码迷,mamicode.com
首页 > Web开发 > 详细

用JS 循环做一个表格

时间:2016-10-22 20:54:48      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:span   nbsp   charset   row   javascrip   class   apple   for   循环   

<!DOCTYPE html>

<html>

 <head>

<meta charset="utf-8" />

<title></title>

 </head>

 <body>

 </body>

<script type="text/javascript">

//首先设置行,列

var cols = 6; //6列

var rows = 6; //6行

var htmlstr = "<table border=‘1px‘>";

for(i = 1; i <= rows; i++) {

htmlstr += "<tr>";

for(j = 1; j <= cols; j++) {

htmlstr += "<td >" + i + "行" + j + "列" + "</td>";

}

htmlstr += "</tr>";

}

htmlstr += "</table>";

document.write(htmlstr);

</script>

 </html>

用JS 循环做一个表格

标签:span   nbsp   charset   row   javascrip   class   apple   for   循环   

原文地址:http://www.cnblogs.com/niuniudashijie/p/5988085.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!