我的网页上有以下 jquery 脚本,它在笔记本电脑/台式机浏览器上运行良好。
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.1.1.min.js"></script>
<script src="sharrre/jquery.sharrre-1.3.4.js"></script>
<script src="js/video-js/video.js"></script>
<script type="text/javascript">
$(document).scroll(function ()
{
if($(this).scrollTop() < 1000) {
$(".socialshare-test").fadeIn(200);
} else {
$(".socialshare-test").fadeOut(200);
}
});
</script>
问题是它停止在 iPad 上工作。我需要添加什么才能使其正常工作吗?