each

英[i:tʃ]   美[itʃ]  

adj.每;各自的

#pron.每個;各自

jqueryeach() 方法 語法

作用:each() 方法規定為每個符合元素規定執行的函數。傳回 false 可用於及早停止循環。

語法:$(selector).each(function(index,element))

參數:

##參數描述function(index,element) 必要。為每個匹配元素規定運行的函數。 index 選擇器的index 位置element 目前的元素(也可使用"this" 選擇器)

jqueryeach() 方法 範例

<html>
<head>
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.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>Coffee</li>
<li>Milk</li>
<li>Soda</li>
</ul>
</body>
</html>
執行實例 »

#點擊 "執行實例" 按鈕查看線上實例

#