欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

(转)Jquery .each()循环

程序员文章站 2022-07-12 23:38:33
...
<!DOCTYPE html>
<html xmlns="http://www.w3.org/xhtml/1999">
	<head>
		<script type="text/javascript" src="jquery-1.6.4.js"></script>
		<script type="text/javascript">
			var a = ['aaaa','bbbb','cccc'];
			$.each(a,function(i,val){
				alert(  typeof(a)+"---> "+i+" : "+typeof(val)+" : "+val);
			});
		</script>
	</head>
		
	<body>
	</body>

</html> 

 

js:

var a = ['aaaa','bbbb','cccc']; // 数组
$.each(a,function(i,val){ //迭代
        //  i  ---> 下标
        //  val ---> a[i] 
	alert(  typeof(a)+"---> "+i+" : "+typeof(val)+" : "+val);
});