<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>javascript016.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
<script type="text/javascript">
/*
数组的操作,
1. 遍历,就是将数组中存储的元素,分别进行取出
虽然数组的遍历操作代码很少,原理也很简单,但是很多的更加复杂数组的操作
必须要依靠遍历,最大值,最小值,排序,前提,必须要进行数组的遍历
2. 获取数组中的最大,最小值
3. 数组的排序 升序,降序
4. 折半查找法,指定一个数据,查找一下这个数据在不在数组中,效率高,数组必须是有序排列
*/
//数组的遍历操作
var arr = [2,4,6,true,false];
/*
如何对数组进行遍历
使用循环语句来实现,循环多少次呢
数组的属性 length 返回的是数组中存储的元素的个数
*/
for(var x = 0 ; x < arr.length ; x++){//x = 0 1 2 3 4
// alert(arr[x]+1);
/*
在输出数组的最后一个元素的时候,不能再输出逗号了
在我遍历数组的时候,如果x到达了最大下标位置,不输出逗号
*/
if(x != arr.length - 1)//X没有到达数组的最大下标的时候
document.write(arr[x]+" , ");
else
document.write(arr[x]);
}
</script>
</head>
<body>
</body>
</html>
JavaScript基础(10)—Array对象(2)
最新推荐文章于 2014-04-22 12:58:03 发布