Document
td{
width: 20px;
height: 70px;
}
请输入行数:
请输入列数:
请输入宽度:
请输入边框:
请输入内容:
function ok(){
var rows=document.getElementById('rows').value;
var cols=document.getElementById('cols').value;
var width=document.getElementById('width').value;
var border=document.getElementById('border').value;
var content=document.getElementById('content').value;
document.getElementById('box').innerHTML=printTable(rows,cols,content,width,border)
}
function printTable(rows,cols,content,width,border){
var html="
for(var i=0;i
html+="
";for(var j=0;j
html+="
"+content+""}
html+="
"}
html+="
";return html;
}