jQuery Mobile scrollstop 事件
最后更新于:2022-03-26 23:30:20
jQuery Mobile scrollstop 事件
定义和用法
scrollstop是页面滚动停止时触发的事件。
提示: 此事件通常附加到文档。
提示: scrollstart是页面开始滚动时触发的事件。
语法
$(“selector“).on(“scrollstop”,function(event){…})
参数 | 描述 |
---|---|
function(event) | 必须。指定 scrollstop 事件触发时执行的函数。
该函数有可选的事件对象 |
更多实例
滚动停止计数
计算 scrollstop 事件触发的次数。
事件对象
使用 event.target 属性返回 scrollstop 事件触发的DOM元素。<