我已经使用java脚本创建了一个单选按钮,现在我想使用name属性将其附加到表的一行中。表格中有多行
提前谢谢.....
我的代码是 -
var newRow = document.createElement("tr");
var newCol = document.createElement("td");
var newInput = document.createElement("input");
newInput.type="radio";
newCol.appendChild(newInput);
newRow.appendChild(newCol);
答案 0 :(得分:1)
您可以使用 getElementsByName 执行此操作,如下所示。
var table = document.getElementsByName("myTableName")[0];
var row = table.insertRow(0);
var cell = row.insertCell(0);
var newInput = document.createElement("input");
newInput.type="radio";
cell.appendChild(newInput);