Jquery. each () 순환

964 단어 JavaScript
Jquery .each()  활용 단어 참조
 
<!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> 

 
이해:
var a = ['aaaa','bbbb','cccc']; //   
$.each(a,function(i,val){ //  
        //  i  --->   
        //  val ---> a[i] 
	alert(  typeof(a)+"---> "+i+" : "+typeof(val)+" : "+val);
});

좋은 웹페이지 즐겨찾기