【发布时间】:2015-07-22 14:41:34
【问题描述】:
我目前有一个表单,可以使用 javascript 在点击时添加新条目。但是,我想更改每个后续“附加组件”的 id: 例如第一个 tbody 的 id 为“participant1”,但下一个 tbody 的 id 为“participant2”,第八个为“participant8”,依此类推。
这里是主文件:
<body>
<form action="process" class="register" method="POST">
<h1>Add Participants</h1>
<fieldset class="row2">
<legend>List of Participants</legend>
<p>
<input type="button" value="Add Participant" onClick="addRow('dataTable')" />
<input type="button" value="Clear Participants" onClick="deleteRow('dataTable')" />
<p>(All acions apply only to entries with check marked check boxes only.)</p>
</p>
<table id="dataTable" class="form" border="1">
<tbody>
<tr>
<p>
<td><input type="checkbox" required="required" name="chk[]" checked="checked" /></td>
<td>
<div>Participant: </div>
<select name="participant1" id="participant1">
<option>Person A</option>
<option>Person B</option>
<option>Person C</option>
</select>
</td>
</p>
</tr>
</tbody>
</table>
<div class="clear"></div>
</fieldset>
<input class="submit" type="submit" value="Confirm »" />
<div class="clear"></div>
</form>
</body>
这里是 JS 函数:
function addRow(tableID) {
var table = document.getElementById(tableID);
var rowCount = table.rows.length;
if(rowCount < 50){
var row = table.insertRow(rowCount);
var colCount = table.rows[0].cells.length;
for(var i=0; i<colCount; i++) {
var newcell = row.insertCell(i);
newcell.innerHTML = table.rows[0].cells[i].innerHTML;
}
}else{
alert("More than 50 Participants? Are you sure?");
}
}
【问题讨论】:
标签: javascript php html select for-loop