admin管理员组文章数量:1341470
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();
本文标签: javascriptindexOf not workingStack Overflow
版权声明:本文标题:javascript - indexOf not working - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743663909a2518406.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论