修改DIV innerHTML剥离表标签

时间:2012-01-30 14:21:52

标签: javascript html

点击一个按钮,我想将其他表格行和单元格添加到<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

1 个答案:

答案 0 :(得分:2)

更改

<div id="extra_cust_field"></div>

<tbody id="extra_cust_field"></tbody>

它应该有效。