标签:cat index top 页面 over get onload var ntop
window.onload = function () {
function getUrls(url) {
//核心代码是url2这行代码,通过.replace()方法将对应的字符串替换成其他方式
var url2 = url.replace("/home", "").replace("/index", "");
var host = window.location.href;
if (url2 == host) {
$(‘ul.uc‘).css({ ‘display‘: ‘none‘ });
$(‘.page-all‘).css({ ‘display‘: ‘none‘ });
//$(‘.nav-bar‘).css({
// ‘marginTop‘: ‘40px‘
//});
$(‘.cate-all b‘).css({ ‘display‘: ‘none‘ });
$(‘ul.uc li‘).removeAttr(‘hover‘)
$(‘#jd-price‘)
.css({
‘margin-left‘: ‘0px;‘
});
}
}
var url = (window.location.href)
getUrls(url)
}
标签:cat index top 页面 over get onload var ntop
原文地址:http://www.cnblogs.com/mhxy13867806343/p/6215742.html