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>