我有一個類似如下的URL添加類:比較URL字符串和菜單的字符串,然後使用jQuery
http://www.website.co.uk/en-us/aboutus/thegroup/test.aspx
我頁面上的UL李菜單:我有
<ul>
<li><a href="/aboutus/thegroup/test.aspx">Test</a></li>
<li>Hello</li>
<li>Bye</li>
<li>Something</li>
<li>Cars</li>
</ul>
每個頁面上的菜單,並希望使用jquery來檢查該頁面上的即時消息。如果我然後使A/li大膽,以便用戶知道他們在頁面上。
我曾嘗試以下:
$(document).ready(function() {
if(window.location.href.indexOf("test")) //
{
alert("your url contains the name test");
}
});
但ID喜歡的事,不介入硬編碼的URL字符串的值。就好像用戶決定添加更多鏈接到UL/LI,jquery需要自動檢查鏈接和url,並向LI添加一個類(以便我可以設計它)。
希望有足夠的信息。
CSS可以用於這些。 – Joberror 2012-04-18 10:31:22
真的嗎?照顧給我看? – 2012-04-18 10:32:56
它相當長,但您可以查看此鏈接。 http://perishablepress.com/dynamic-body-class-id-php-wordpress/ – Joberror 2012-04-18 10:44:33