each方法的語法格式:each(callback)。
參數callback為function函數,該函數可以接受一個形參index,即遍歷元素的序號(從0開始)。
示例:
- <script type="text/javascript">
- $(function() {
- $("img").each(function(index) {
- //根據形參index設置元素的title屬性
- this.title = "第" + index + "幅風景圖片,alt內容是" + this.alt;
- })
- })
- </script>
- </head>
- <body>
- <p>
- <img src="../Images/img05.jpg" alt="第0幅風景畫" />
- <img src="../Images/img06.jpg" alt="第1幅風景畫" />
- <img src="../Images/img07.jpg" alt="第2幅風景畫" /></p>
- </body>