我有这个脚本并且运行良好,但如果网址是这样,它会重定向到Google:
http://example.com/test/examples
if (window.location.href.indexOf("/test") > -1) {
window.location.href="http://google.hu";
}
如果在/ test /.
之后我有话,我不想重定向所以我需要这个:
http://example.com/test/examples - >不要重定向
http://example.com/test --->重定向
我如何使用jQuery做到这一点?
答案 0 :(得分:1)
您可以使用正则表达式检查网址是否以test /
结尾var url = window.location.href;
if(url.search(/test\/$/) >= 0) {
alert("Do redirect!");
}
或 url.search(/测试$ /) 如果你想看看它是否以测试结束