我想将以下jQuery添加到以下页面中。
http://www.mywebsite.com/check-8.asp
http://www.mywebsite.com/edit-8.asp
http://www.mywebsite.com/cart-8.asp
所以这意味着我想在URL字符串包含check-8
,cart-8
或edit-8
的地方添加它。
使用jQuery或JavaScript的最佳方法是什么?
var text = $('#system td.td-main').html();
if (text != null)
{
var newtext = text.replace("Pris","<div id=\"pricebox\">Pris").replace("mva\)","mva\)</div>");
$('#system td.td-main').html(newtext);
}
提前致谢。
答案 0 :(得分:6)
if(location.pathname.indexOf('check-8') > 0 || location.pathname.indexOf('cart-8') > 0 || location.pathname.indexOf('edit-8') > 0){
//your code here
}
答案 1 :(得分:2)
如果您需要纯JavaScript解决方案,请使用window.location
属性:
if (window.location.href.match(/(check|cart|edit)-8/).length > 0) {
// do your stuff
}
您可以使用 string.match 方法检查它是否与正则表达式匹配。如果您需要知道它是哪一个,您也可以将其分解出来:
var matches = window.location.href.match(/(check|cart|edit)-8/);
if (matches.length > 0) {
var action = matches[1]; // will be check, cart or edit
}
答案 2 :(得分:2)
或者您可以使用以下内容:
function testForCheckEditCart() {
var patt = /(check|edit|cart)-8/i;
return patt.test(location.href);
}