如何获取文档URL并将其与条件分支进行比较?
伪代码:
If document url = "../products.html"
Then do this piece of code();
答案 0 :(得分:6)
如果您正在使用加载的html,可以尝试
if(window.location.pathname == "products.html"){
//do something here
}
location.pathname返回该位置指定的文件名或路径。
此外,您可以通过
获取文件名var p = window.location.pathname.split("/");
var filename = p[p.length-1];