如何使用javascript / jQuery检查URL是否包含特定的链接/文本。
例如:
用户浏览我的站点,其URL为:“http // www.mywebsite.com / userprofile / abc& from = home”
我设置了一个变量,其值为“http // www.mywebsite.com / userprofile / abc”,我想知道如何检测 if “http // www.mywebsite.com / userprofile / abc“存在于网址(”http // www.mywebsite.com / userprofile / abc& from = home“),然后执行一项功能。
谢谢!
答案 0 :(得分:1)
var urlToCheck = "http//www.mywebsite.com/userprofile/abc";
if (window.location.href.indexOf(urlToCheck) > -1) {
executeAFunction();
}