javascript 动态创建表格
<html>
<head>
<script>
functioncreateTable(rows,lines){
this.rows=rows;
this.lines=lines;
varBody=document.getElementById('body');
varTable=document.createElement('table');//创建table标签元素
Table.setAttribute('border','1');
//给table标签添加其他属性
for(vari=0;i<this.rows;i++){
varlRow=document.createElement('tr');
for(varj=0;j<this.lines;j++){
vartextNode=document.createTextNode(i+','+j);
varlLine=document.createElement('td');
lLine.appendChild(textNode);
lRow.appendChild(lLine);
}
Table.appendChild(lRow);
}
Body.appendChild(Table);
}
</script>
</head>
<body>
<divid="body"></div>
</body>
<scripttype="text/javascript">
createTable(10,10);
</script>
</html>
第二种方法:
<script>
functioncreateTable(rows,lines){
this.rows=rows;
this.lines=lines;
varBody=document.getElementById('body');
varTable=document.createElement('table');
Table.setAttribute('border',1);
for(vari=0;i<this.rows;i++){
varrow=Table.insertRow(i);
for(varj=0;j<this.lines;j++){
varcells=row.insertCell(j);
cells.innerHTML=i+','+j
}
}
Body.appendChild(Table);
}
</script>
热门推荐
10 庆双节祝福语简短
11 打牌翻盘祝福语简短
12 初八祝福语简短语
13 给长辈祝福语简短大全
14 孙女结婚姥姥祝福语简短
15 别人过大寿祝福语简短
16 圆圆的祝福语简短
17 婆婆生日祝福语简短的
18 六一祝福语简短感动女生