在我制作的扫雷器中,我创建了一个 10*10<table>
并给<td>
s id
0-99。但是我想知道是否每个都有一个继承选择器<td>
,比如某种 html5 或 jquery 语法。
我的代码
document.getElementById("grid").innerHTML = "";
var gameBox = "";
//ten rows
for ( i = 0 ; i < rowAmount ; i++ ) {
gameBox += "<tr>";
//ten columns
for ( var j = 0 ; j < columnAmount ; j++ ) {
//produce id value
var idValue = ( i * rowAmount ) + j;
//write cell
gameBox += "<td class = 'box' id = '" + idValue + "' ></td>";
}
gameBox += "</tr>";
}
document.getElementById("grid").innerHTML = gameBox;