基本上这个问题是不言自明的。我不知道如何组合小片段的 javascript 而不是拥有两个单独的文件。
这两个代码是:
$(function(){
$('.navbar li').each(function(){
if(window.location.href.indexOf($(this).find('a:first').attr('href'))>-1)
{
$(this).addClass('active').siblings().removeClass('active');
}
});
});
$(function(){
$('.dropdown-menu li').each(function(){
if(window.location.href.indexOf($(this).find('a:first').attr('href'))>-1)
{
$(this).removeClass('active')
}
});
});
还有一个问题,第一个$(function()
有必要吗?
谢谢你的帮助。