jQuery scroll() 方法
jQuery 教程
· 2019-03-09 21:59:15
实例
对元素滚动的次数进行计数:
$("div").scroll(function(){
$("span").text(x+=1);
});
定义和用法
当用户滚动指定的元素时,会发生 scroll 事件。
scroll 事件适用于所有可滚动的元素和 window 对象(浏览器窗口)。
scroll() 方法触发 scroll 事件,或规定当发生 scroll 事件时运行的函数。
语法
触发被选元素的 scroll 事件:
$(selector).scroll()
添加函数到 scroll 事件:
$(selector).scroll(function)
| 参数 | 描述 |
|---|---|
| function | 可选。规定当 scroll 事件被触发时运行的函数。 |
点击查看所有 jQuery 教程 文章: https://codercto.com/courses/l/35.html
Flexible Pattern Matching in Strings
Gonzalo Navarro、Mathieu Raffinot / Cambridge University Press / 2007-7-30 / USD 64.99
String matching problems range from the relatively simple task of searching a single text for a string of characters to searching a database for approximate occurrences of a complex pattern. Recent ye......一起来看看 《Flexible Pattern Matching in Strings》 这本书的介绍吧!