定義和用法
each() 方法規定為每個匹配元素規定運行的函數。
提示:返回 false 可用於及早停止循環。
語法
$(selector).each(function(index,element))
其中function(index,element)為必需。
為每個匹配元素規定運行的函數。
index - 選擇器的 index 位置
element - 當前的元素(也可使用 "this" 選擇器)
實例代碼:
<html>
<head>
<script type="text/javascript" src="http:///keleyi/pmedia/jquery/jquery-1.10.2.min.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></li>
<li></li>
<li>jQuery each()</li>
</ul>
</body>
</html>
代碼效果: