我正在开发这个网站;
http://storyville.jonmarkoff.com/storyvillewp/
我正在使用此代码突出显示右上角的当前链接(Scripted,Branded / Commercial),但Non-Scripted没有突出显示,我认为因为它是主页。当我在主页上时,有没有办法让它突出显示?
$(function() {
$(".textwidget a").each(function() {
if (this.href == window.location) {
$(this).css("color", "red");
};
});
});
答案 0 :(得分:0)
我把它解决了,这是主页内容
<span id="homepage-flag" style="display: none" />
然后使用此代码
if($("#homepage-flag").length > 0) {
$("#text-2 a").css("color", "red");
}