如何检查当前URL中的字符串与JavaScript?

这个问题在这里已经有了答案:

  • 在JavaScript中获取当前网址? 29个答案

  • 那这个呢? 在第一行定义的正则表达式将根据URL进行测试:

    var myRe = //series//; //regular expression to use
    if(myRe.test(window.location.href)){
        alert("matching");
    }else{
        alert("not matching");
    }
    

    如果你想测试整个URL(并且真的想用正则表达式),你可以用第一行代替

    var myRe = /^http://mywebsite/series/2545-abc$/;
    

    如果您在最后删除美元符号,则也会接受URL末尾的修改(例如http://mywebsite/series/2545-abc/foo.html

    链接地址: http://www.djcxy.com/p/70239.html

    上一篇: How to check string in current URL with javascript?

    下一篇: How do get URL in javascript?