基本的に問題は自明です。2つの別々のファイルを用意するのではなく、JavaScriptの小さなスニペットを組み合わせる方法がわかりません。
2つのコードは次のとおりです。
$(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()
必要ですか?
助けてくれてありがとう。