new.php当我单击页面上的元素时,此代码将打开。$(document).ready(
$("#2000").click(function() {
$("#w36").load('/new.php');
});
});我想改变它的行为,而不是监听点击,而是观察用户是否在页面中滚动一点。我应该如何编辑它?
1 回答
www说
TA贡献1775条经验 获得超8个赞
尝试滚动事件:
$(document).ready(function(){
$(window).scroll(function(){
//do whatever you want
$("#w36").load('/new.php');
$(this).unbind("scroll");
});
});
仅当滚动条出现在页面中时它才起作用。
添加回答
举报
0/150
提交
取消