我想执行函数 up(); 如果网址包含“invt”。
到目前为止,我有这个:
if(window.location.pathname == "/invt/"){
alert("invt");
}
然而,这并没有引起我的警觉。有任何想法吗?
由于下面的答案,我已经让它工作了。
考虑:
$(document).ready(function () {
if(window.location.href.indexOf("invt") > -1) { //checks url for "invt" (all products contain this)
up();
return;
}
});