<html>
<head><meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<SCRIPT LANGUAGE="JScript">
function createCell()
{
var cellVal=0;
var inputName=0;
document.write("<form>");
document.write("<table>");
   for(var i=0;i++;i<10)
{
document.write("<tr>");
for(var j=0;j++;j<35)
{
document.write("<td><input type=\"text\" name=\""+inputName+"\">"+cellVal+"</td>");
cellVal++;
inputName++;
}
document.write("</tr>");
}
document.write("</table>");
document.write("</form>");////////////这里是;号
}
</SCRIPT>
<SCRIPT>
createCell();
</SCRIPT>
</body>
</html>