我在我的一个寻呼机上有一个删除/添加活动类和平滑滚动脚本。一个脚本可以工作但是当我将它们组合起来时,删除/添加活动类将不再起作用。
我有这个脚本
$(function() {
$(".nav li").on("click", function() {
$(".nav li").removeClass("active");
$(this).addClass("active");
});
});
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top-50
}, 1000);
return false;
}
}
});
});
答案 0 :(得分:0)
将脚本放在相同的$(function()包装器中:
$(function() {
$(".nav li").on("click", function() {
$(".nav li").removeClass("active");
$(this).addClass("active");
});
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top-50
}, 1000);
return false;
}
}
});
})