js 遍历 each() 方法

1、例子:

<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>//点击此button的文本值会弹出带有Coffee文本值的、再点击弹出Milk、再点击弹出Soda
<ul>
<li>Coffee</li>
<li>Milk</li>
<li>Soda</li>
</ul>
</body>
</html>

posted @ 2017-10-24 17:48  奋斗的大海  阅读(4410)  评论(0编辑  收藏  举报