我写的一段代码摘出一句给你参考一下:
var bgDiv = document.createElement("div")
控件都是放在容器里的。页面、窗体、Panel等就是容器。
Buttton btn =new Button( )
this.Controls.Add( btn)//给当前页面或窗体添加控件
,保存数据时可以用ajax来做。以下代码可参考<html>
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=gb2312">
<title>增加Table行</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">'
newTd1.innerText= '新加行'
}
</script>
<body>
<table id="testTbl" border=1>
<tr id="tr1">
<td ><input type=checkbox id="box1"></td>
<td id="b">第一行</td>
</tr>
<tr id="tr2">
<td ><input type=checkbox id="box2"></td>
<td id="b">第二行</td>
</tr>
<tr id="tr3">
<td ><input type=checkbox id="box3"></td>
<td>第三行</td>
</tr>
</table>
<br />
<input type="button" id="add" onclick="addRow()" value="Add Row" />
</body>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)