作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
JavaScript 新手,但在我看来,我的 html 应该生成我创建的网格。我的 js 文件中没有填充任何 tr 或 td 元素。有谁知道为什么或我缺少什么?感谢您的帮助。
这是我的 js 文件:
function showGrid() {
var gridDiv = document.getElementById("gridDiv");
gridDiv.innerHTML = genGrid();
}
function genGrid() {
var html = "";
var row = 8;
var i = 0;
var j = 0;
var tdClass = "";
for (i = row; i > 0; i--) {
html += "<tr>";
for (j = row; j > 0; j--) {
var r = j % 2;
if (r = 0) {
tdClass = "red";
} else {
tdClass = "black";
}
html += "<td class=\"" + tdClass + "\"></td>";
}
html += "</tr>";
}
return html;
}
这是我的 html 文件:
<!DOCTYPE HTML>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<html>
<head>
<link rel="stylesheet" type=text/css href="style.css">
<script src="genGame.js"></script>
</head>
<body onload="showGrid()">
<div id="gridDiv">
This should get overridden
</div>
</body>
</html>
最佳答案
这个
<div id="gridDiv">
This should get overridden
</div>
应该是
<table id="gridDiv">
This should get overridden
</table>
关于javascript - JavaScript 中的 For 循环不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28260539/
我是一名优秀的程序员,十分优秀!