码迷,mamicode.com
首页 > 其他好文 > 详细

each的用法

时间:2016-01-27 12:43:54      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

$(selector).each(function(index,element))

function(index,element)

必需。为每个匹配元素规定运行的函数。

  • index - 选择器的 index 位置
  • element - 当前的元素(也可使用 "this" 选择器)

each() 方法规定为每个匹配元素规定运行的函数。如何理解?先看一段带代码

$(function(){
	$(‘.btn1‘).click(function(){
		alert($(‘li‘).text());
	});
	$(‘.btn2‘).click(function(){
		$(‘ul li‘).each(function(){
			alert($(this).text());	
		});
	});
});

html:

	<input type="button" class="btn1" value="按钮1" />
	<input type="button" class="btn2" value="按钮2" />
	<ul>
		<li>1</li>
		<li>2</li>
		<li>3</li>
		<li>4</li>
	</ul>

效果:

技术分享

each的用法

标签:

原文地址:http://www.cnblogs.com/liangcheng11/p/5162567.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!