'))
}
// 首页精简
var checkIndex = window.location.href.match(/mydrivers\.com\/$/);//检查首页
var newsList = null;
if (checkIndex) {
// 设置字体颜色
$("style").append(" .newslist li a{color:#222} .newslist li a.itred{color:#d22222} ");
$(".main_right").remove();
newsList = $(".main").first().html();
}
if (newsList) {
newsList = newsList.replace('class="main_left"','class="main_left" style="margin:0 auto;float:none;"');
newsList = newsList.replace(/redb/g, "itred");
$("body").html(newsList);
$(".main_2").remove();
$("h4").remove();
}
// 按关键字屏蔽内容条目
var BanText = ["年卡"]; //屏蔽的字符
//Ban掉相关字符
if (checkIndex) {
BanText.map(function (v) {
$('li:contains(' + v + ')').hide();
})
}
})()