for手打

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>

 

<body>
 
 
<script>
document.write("<table border=1>");
for (let i = 0; i <=5; i++) {
document.write("<tr>")
for (let index = 0; index <=6; index++) {
document.write("<td ><img src='打地鼠图片/bad.gif'></td>");
}
document.write("</tr>");
}
document.write("</table>");
</script>
</body>
</html>
posted @ 2018-05-15 17:09  dongdongyang  阅读(58)  评论(0)    收藏  举报