だから私はナビゲーションメニューを強調するための簡単なjqueryコードを持っています。
$(document).ready(function(){
$('#header .mm a').each(function(){
if( $(this).attr('href') == window.location.href ){
$(this).addClass('active');
}
var value = window.location.href.substring(window.location.href.lastIndexOf('/') + 1);
if( $(this).attr('href') == '/site/' && (value == '') ){
$(this).addClass('active');
}
});
});
このページのここ:http://perfectlanding.com.au/creativity
コードが実行されない理由がわかりません。コンソールにエラーはありません。