我有这个 jQuery 正则表达式,它是从 stackoverflow 的另一个线程中获得的。它根据 url 向当前菜单项添加一个 css 类。它看起来像这样:
<script>
$(function () {
// show current menu object highlighted
var url = window.location.pathname,
urlRegExp = new RegExp(url == '/' ? window.location.origin + '/?$' : url.replace(/\/$/, '')); // create regexp to match current url pathname and remove trailing slash if present as it could collide with the link in navigation in case trailing slash wasn't present there
// now grab every link from the navigation
$('nav a').each(function () {
// and test its href against the url pathname regexp
if (urlRegExp.test(this.href)) {
$(this).addClass('current');
}
console.log(url);
console.log($(this).attr('href'));
});
});
</script>
如果路径与链接 href 中的路径完全相同,则此方法非常有用,但我希望这也适用于当前菜单对象的子页面。这是我的导航:
<nav>
<ul>
<li>
<a href="/Admin/Blogs" title="Blog" style="border-left: 1px solid rgba(0,0,0,.15);">Blog</a>
</li><li>
<a href="/Admin/Shows" title="Shows">Shows</a>
</li><li>
<a href="/Admin/StoreItems" title="Store">Store</a>
</li><li>
<a href="/Admin/Pages" title="Pages">Pages</a>
</li><li>
<a href="/Admin/Menu" title="Menu">Menu</a>
</li><li>
<a href="/Admin/SocialMedia" title="Social media">Social media</a>
</li><li>
<a href="/Admin/ImageGallery" title="Image gallery">Image gallery</a>
</li><li>
<a href="/Admin/MailSettings" title="Mail settings">Mail settings</a>
</li><li>
<a href="/Admin/PageSettings" title="Site configuration">Site configuration</a>
</li>
</ul>
</nav>
假设路径是/Admin/Blogs/Create,我希望突出显示博客菜单项。目前情况并非如此。此外,如果我转到 /Admin(即主页),此时所有菜单项都被选中,这是不可取的。
有一天我真的需要花时间正确学习正则表达式,但我对这个(学校项目)有点着急,所以如果有人能帮助我,我将不胜感激。