JavaScript中九九乘法表製作

幸福清風發表於2017-09-05

練習一下表格,利用Javascript製作出來:



程式碼賞析:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
/* 2.設定背後盒子大小 居中 */
div{
width:80px;
height:40px;
border:1px solid black;

line-height: 40px;
text-align: center;

display:inline-block;
/* 邊框重合 需要設定 */
margin-left:-1px;
margin-top:-1px;
}
</style>

<script>
// 3.window載入
window.onload = function(){

// 4.獲取元素資訊
var oDiv = document.getElementById("body01");

// 5.建立變數
var sStr = "";

// 6 遍歷 迴圈 拼接
for(var i=1;i<10;i++){

for(var j=1;j<i;j++){
sStr += "<div>" + j + "×" + i + "=" + j*i + "</div>";
}

sStr +="<br>";
}

// 7.遍歷 迴圈之外 改變盒子內部內容
oDiv.innerHTML = sStr;




}
</script>

</head>
<body id="body01">
<!-- 1.body需要獲取元素,所以設定id -->
</body>
</html>

相關文章