jQuery each() 方法
jQuery 教程
· 2019-03-27 23:38:28
实例
输出每个 <li> 元素的文本:
$("button").click(function(){
$("li").each(function(){
alert($(this).text())
});
});
定义和用法
each() 方法为每个匹配元素规定要运行的函数。
提示:返回 false 可用于及早停止循环。
语法
$(selector).each(function(index,element))
| 参数 | 描述 |
|---|---|
| function(index,element) | 必需。为每个匹配元素规定运行的函数。
|
点击查看所有 jQuery 教程 文章: https://codercto.com/courses/l/35.html
Building Social Web Applications
Gavin Bell / O'Reilly Media / 2009-10-1 / USD 34.99
Building a social web application that attracts and retains regular visitors, and gets them to interact, isn't easy to do. This book walks you through the tough questions you'll face if you're to crea......一起来看看 《Building Social Web Applications》 这本书的介绍吧!