我使用jquery 1.11.0和以下代码允许页面滚动,如果jquery.e使用easing 1.3
$(function() {
$('.page-scroll a').bind('click', function(event) {
var $anchor = $(this);
$('html, body').stop().animate({
scrollTop: $($anchor.attr('href')).offset().top
}, 1500, 'easeInOutExpo');
event.preventDefault();
});
});
奇怪的是,这不适用于JQuery 1.11.1
任何想法为什么?更改日志没有提供任何线索。