Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个示例菜单演示。
效果如demo中所想。但是当我在我的网站上应用相同的内容并href="#"替换为href="XXX.aspx"时,效果并不理想。似乎没有任何工作。
href="#"
href="XXX.aspx"
有人可以帮我解决我哪里出错了吗?
这件事对我来说效果很好。
$('#Menu ul li a').each(function() { var path = window.location.href; var current = path.substring(path.lastIndexOf('/') + 1); var url = $(this).attr('href'); if (url == current) { $(this).addClass('active'); }; });