标签:
慕课网的一道题目开始做的时候一直不清楚数组的各项元素,通过将各项元素执行输出,才明白过来
<!DOCTYPE HTML>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>数组</title>
<script type="text/javascript">
//创建数组
var arr=[‘*‘,‘##‘,"***","&&","****","##*"];
arr[7]="**";
//显示数组长度
//alert(arr.length);
//将数组内容输出,完成达到的效果。
document.write(arr[0]+"<br>");
document.write(arr[1]+"<br>");
document.write(arr[2]+"<br>");
document.write(arr[3]+"<br>");
document.write(arr[4]+"<br>");
document.write(arr[5]+"<br>");
document.write(arr[6]+"<br>");
document.write(arr[7]+"<br>");
</script>
</head>
<body>
</body>
</html>
输出结果为:*
##
***
&&
****
##*
undefined
**
出现的问题:没有意识到数组随着元素的增加,长度会改变。
标签:
原文地址:http://www.cnblogs.com/wlf1112/p/4973610.html