var myurl = window.location;
var pos = myurl.IndexOf("memberId");
if (pos = -1) {
alert("false");
} else {
alert("true");
}
For some reason I can't seem to get this simple method to work. Chrome says 'myurl does not contain the method 'indexOf''. Any reason?
var myurl = window.location;
var pos = myurl.IndexOf("memberId");
if (pos = -1) {
alert("false");
} else {
alert("true");
}
For some reason I can't seem to get this simple method to work. Chrome says 'myurl does not contain the method 'indexOf''. Any reason?
Share Improve this question edited Dec 15, 2010 at 15:22 David Thomas 254k53 gold badges382 silver badges419 bronze badges asked Dec 15, 2010 at 15:20 phil crowephil crowe 1,5052 gold badges11 silver badges15 bronze badges 2-
3
if (pos = -1)
shouldn't that beif (pos == -1)
? – Razor Commented Dec 15, 2010 at 15:23 -
2
window.location
is an object. Objects don't own theindexOf
method. Even if you have a typo there, it wouldn't work either way. – jAndy Commented Dec 15, 2010 at 15:28
4 Answers
Reset to default 9Maybe typo but it should be
myurl.indexOf
lowercase i
.
And location
is an object, so you want:
var myurl = window.location.href;
(and all the other things people say in the ments and other answers ;))
Update: To see what kind of properties an object has, just type, in this case, window.location
in the console:
window.location
returns an object. Perhaps you wanted window.location.pathname
? :-)
There's also a problem with this line:
if (pos = -1)
It should be
if (pos == -1)
try var myurl = window.location.pathname;
var myurl = window.location.toString();
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743663910a4486652.html
评论列表(0条)