动态创建 table row cell ( insertRow ,insertCell )


1

function add(){
      var obj = document.getElementById("tbl");
      var newRow = obj.insertRow(0);
      var newCell = newRow.insertCell(0);
      var clonetd = obj.rows[1].cells[0].cloneNode(true);
            		
	newCell.innerHTML = clonetd.innerHTML;
                
        //obj.deleteRow(1);
}


2

<table id="tbl">
	<tr>
          <td>  都 是 是 中 国 的 !<input type="text" value="" /></td>
        </tr>
</table>

<a onclick="add()">add</a>


3

你可能感兴趣的:(JavaScript,html,insertRow,添加行,insertCell)