jquery中可以使用each()方法实现循环,each() 方法规定为每个匹配元素规定运行的函数。返回 false 可用于及早停止循环。
语法
$(selector).each(function(index,element))
参数:
function(index,element):必需。为每个匹配元素规定运行的函数。
index - 选择器的 index 位置
element - 当前的元素(也可使用 "this" 选择器)
示例:
<html> <head> <script type="text/javascript" src="/jquery/jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function(){ $("li").each(function(){ alert($(this).text()) }); }); }); </script> </head> <body> <button>输出每个列表项的值</button> <ul> <li>Coffee</li> <li>Milk</li> <li>Soda</li> </ul> </body> </html>
更多相关知识请关注web前端课程
以上就是jquery怎么写循环?的详细内容,更多请关注易知道|edz.cc其它相关文章!