0
我正在開發這個網站;高亮顯示當前鏈接WordPress的
http://storyville.jonmarkoff.com/storyvillewp/
而且我使用此代碼並突出顯示右上當前鏈接(腳本,品牌/商業),但非腳本沒有得到強調的,我想是因爲它的主頁。有沒有辦法讓我在主頁上突出顯示?
$(function() {
$(".textwidget a").each(function() {
if (this.href == window.location) {
$(this).css("color", "red");
};
});
});