我试图在 html 中构建一个扫雷器,而 javascript 没有工作
这是我的html
<!DOCTYPE html>
<html>
<head>
<link rel = "stylesheet" type = "text/css"
href = "minesweeper.css" >
</head>
<body>
<table id = "i" ></table>
<script src = "minesweeper.js" ></script>
</body>
</html>
这是CSS
td{
border: 2px outset #000000;
width:25px;
height: 25px;
background-color: #cfcfcf;
}
这是javascript(minesweeper.js)
var gameBox = document.getElementById("i").innerHTML;
console.log(gameBox);
for ( var i = 0 ; i < 3 ; i++ ) {
gameBox += "<tr>";
console.log(gameBox);
for ( var j = 0 ; j < 3 ; j++ ) {
gameBox += "<td id = '" /*+ i*/ + j + "'></td>";
}
gameBox += "</tr>";
}
我得到的只是一个空白页
这是页面的链接 http://borisute.com/geshem/2013/mkeller/minsweeper.html (它有更多的代码我没有包括 b/c 它与上述问题无关