為什么出現(xiàn)兩次圖形
<!DOCTYPE? HTML>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>數(shù)組</title>
<script type="text/javascript">
?//創(chuàng)建數(shù)組
?var arr= ['*','##',"***","&&","****","##*"];
?arr[7] = "**";
?//顯示數(shù)組長度
?alert(arr.length);
?//將數(shù)組內(nèi)容輸出,完成達到的效果。
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>
2018-06-09
瀏覽器問題 ?自己的軟件上沒事
2018-05-30
瀏覽器問題,我這完美運行
2018-05-30
buzhidao1