当前我正在使用jquery来获取URL路径
var href = document.location.pathname;
我正在寻找的路径类似于/ clients / invoice / details / DynamicID / DynamicID
我需要检查jref是否在路径中按顺序包含href的/ clients / invoice / details /。有人可以帮我吗-我尝试了以下
if(href.match('/\/clients/invoice/details/\/')) {
}
但我认为我做错了事。
答案 0 :(得分:1)
var href = window.location.href;
if(href.indexOf(‘/clients/invoice/details/') > -1){
//your code
}
您可以使用简单的indexOf函数代替复杂的正则表达式
答案 1 :(得分:0)