我有以下代码在到达文档页面底部时旋转按钮,该文档页面在ios设备上无处不在。有人可以帮忙吗?
$(document).ready(function() {
$(window).scroll(function() {
if ($("body").height() == ($(window).height() + $(window).scrollTop())) {
$(".next").addClass('rotated').bind('click touchstart', function(e) {
e.preventDefault();
pageScroller.goTo(1);
});
} else {
$(".next").removeClass('rotated');
}
});
});