javascript - indexOf not working - Stack Overflow

var myurl = window.location;var pos = myurl.IndexOf("memberId");if (pos = -1) {alert("fa

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();

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743663910a4486652.html

相关推荐

  • javascript - indexOf not working - Stack Overflow

    var myurl = window.location;var pos = myurl.IndexOf("memberId");if (pos = -1) {alert("fa

    1天前
    30

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信