点击一个按钮,我想将其他表格行和单元格添加到<table>
<input type="button" value="Add More" onclick="add_cust_fields()" />
table rows and cells here
<div id="extra_cust_field"></div>
rows and cells continue here
我的JScode
function add_cust_fields() {
document.getElementById("extra_cust_field").innerHTML +=
"<tr><td>test</td><td>test2</td></tr>";
}
我得到的只是整个桌子上方testtest2
。
答案 0 :(得分:2)
更改
<div id="extra_cust_field"></div>
到
<tbody id="extra_cust_field"></tbody>
它应该有效。