在我的wordpress网站上,我顺利滚动到锚点脚本的效果不如预期。它触发了警报"并滚动到页面但没有任何动画。
$(document).ready(function($){
/*------------------------------------*/
/* SMOOTH SCROLL */
/*------------------------------------*/
$('a[href^="#"]').on('click',function (e) {
alert("Step 1");
e.preventDefault();
var target = this.hash,
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top
}, 900, 'swing', function () {
window.location.hash = target;
});
});
});