location.host
location.pathname
location.href
上面的分别是取主机,路径和整个url的
根据你的需要取得url判断一下然后
if(location.pathname == '111'){
$("#link").css({color:'#ff0000'});
} else if(location.pathname == '222') {
$("#link").css({color:'#000'});
}
如果域名不同使用location.host
var str=$("#link").href .trim();
//然后拿这个和正则表达式比较;
var reg = /^[ ]1$/; 正则如何用自己去看文档
if(str.match(reg)) {
$("body").color="#ff0000";
}
host = window.location.host;
if (host=="域名1")
{
document.write("")
}
就这种的,你看看
if(location.pathname == '111'){
$("#link").css({color:'#ff0000'});
} else if(location.pathname == '222') {
$("#link").css({color:'#000'});
}