我有一個動態創建的UL。我想使用jQuery來使用當前的URL,通過指定的UL進行搜索並找到任何具有匹配href的li。如果找到一個,然後添加類「current_page」。使用jQuery將當前URL與UL中的herf匹配,並在匹配時添加類
我想出了這個,但它似乎並沒有辦法。
$(document).ready(function() {
$("ul.nav_cat_archiveli").find("a[href='"+window.location.pathname+"']").each(function() {
$(this).addClass("current_page");
});
});
優秀的href財產!有史以來最快的答案!我將.pathname更改爲.href,它完全按照要求工作。謝謝。 – Dan 2010-07-11 12:21:21
document.location.pathname爲我工作。 window.location.href沒有。 – Lorenzo816 2010-12-07 03:43:16