JQuery IF文档url =“../products.html”然后执行此操作

时间:2010-12-03 08:51:52

标签: javascript jquery if-statement conditional

如何获取文档URL并将其与条件分支进行比较?

伪代码:

If document url = "../products.html"
Then do this piece of code();

1 个答案:

答案 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];