牛骨文教育服务平台(让学习变的简单)
博文笔记

js中数组的4种遍历方式

创建时间:2017-01-10 投稿人: 浏览次数:162
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8"/>
	<title>数组的遍历方式</title>
	<script type="text/javascript">
		var arr = [11,22,33,55];
		//普通的循环遍历方式
		function first(){
				
			for(var i= 0;i<arr.length;i++){
				console.log("第一种遍历方式	"+arr[i]);
			}
			console.log("111111111111111111111111111111");


		}
		//2、for ..in 遍历方式
		function second(){
			// for in 遍历需要两个形参 ,index表示数组的下标(可以自定义),arr表示要遍历的数组
			for(var index in arr){
				console.log("第二种遍历方式	"+arr[index]);

			}
			console.log("222222222222222222222222222222");
		}

		//3,很鸡肋的遍历方式
		function third(){
			//第一个参数为数组的元素,第二个元素为数组的下标
			arr.forEach(function(ele,index){
				console.log("第三种遍历方式	"+arr[index]+"-----"+ele);
			});
			console.log("333333333333333333333333333333");

		}
		//4,for-of遍历方式
		function forth(){
			//第一个变量ele代表数组的元素(可以自定义) arr为数组(数据源)
			for(var ele of arr){
				console.log("第四种遍历方式	"+ele);
			}
			console.log("444444444444444444444444444444");
		}
	</script>
</head>
<body>
	<input type="button" value="第一种遍历方式" name="aa" onclick="first();"/><br/>
	<input type="button" value="第二种遍历方式" name="aa" onclick="second();"/><br/>
	<input type="button" value="第三种遍历方式" name="aa" onclick="third();"/><br/>
	<input type="button" value="第四种遍历方式" name="aa" onclick="forth();"/><br/>
</body>
</html>

声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。