<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[7]+<br/>);
document.write(arr[2]+<br/>);
document.write(arr[4]+<br/>);//将数组内容输出,完成达到的效果。
</script>
</head>
<body>
</body>
</html>
document.write(arr[0]+<br/>);
document.write(arr[7]+<br/>);
document.write(arr[2]+<br/>);
document.write(arr[4]+<br/>);//将数组内容输出,完成达到的效果。
里面的<br/>要加""
vzsgjfgvheuy
<br />需要加“”,相当于字符串,document.write(arr[0]+“<br/>”)相当于得到 *<br />,html再解析才能显示正确