最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - indexOf not working - Stack Overflow

programmeradmin1浏览0评论
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 be if (pos == -1)? – Razor Commented Dec 15, 2010 at 15:23
  • 2 window.location is an object. Objects don't own the indexOf method. Even if you have a typo there, it wouldn't work either way. – jAndy Commented Dec 15, 2010 at 15:28
Add a ment  | 

4 Answers 4

Reset to default 9

Maybe 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();
发布评论

评论列表(0)

  1. 暂无评论