目前有需要 需要实现动态添加行(或含表格的行) 经过思考如下问题:
1.可以增加行 但是不知道怎么去添加到cms的数据库
2.如果不添加到数据库 可否提交到后台 的内容输入框!
代码如下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>添加</title>
</head>
<script>
function addRow(obj)
{
//添加一行
var newTr = testTbl.insertRow();
//添加两列
var newTd0 = newTr.insertCell();
var newTd1 = newTr.insertCell();
//设置列内容和属性
newTd0.innerHTML = '<input type=checkbox id="box4">';
newTd0.innerHTML = '<input type=checkbox id="box4">';
newTd1.innerText= '新添加的;
}
</script>
<body>
<table id="testTbl" border=1>
<tr id="tr1">
<td width="20" ><input type=checkbox id="box1"></td>
<td width="123" id="b">第一行</td>
<td width="123" id="b"> </td>
<td width="248" id="b"> </td>
<td width="248" id="b"> </td>
</tr>
<tr id="tr2">
<td ><input type=checkbox id="box2"></td>
<td colspan="4" id="b">第二行</td>
</tr>
<tr id="tr3">
<td ><input type=checkbox id="box3"></td>
<td colspan="4">第三行</td>
</tr>
</table>
<br />
<input type="button" id="add" value="Add Row" />
</body>
</html>