所以我有一个简单的 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
我不知道为什么代码不会运行。控制台中没有错误。