2017.11.28 点击a

function heaht() {
"use strict";
$(".locdown").on("click", function () {
if (!$(this).parent("li").hasClass("current-menu-item")) {
$(this).parent("li").addClass("current-menu-item");
$(this).parent("li").siblings("li").removeClass("current-menu-item");
}
$("html,body").stop().animate({
scrollTop: $("#a01").offset().top - 80
}, 1000);
});
$(".locdown2").on("click", function () {
if (!$(this).parent("li").hasClass("current-menu-item")) {
$(this).parent("li").addClass("current-menu-item");
$(this).parent("li").siblings("li").removeClass("current-menu-item");
}
$(this).parent("li").addClass("current-menu-item");
$("html,body").stop().animate({
scrollTop: $("#a02").offset().top - 80
}, 1000);
});
}
相关文章