码迷,mamicode.com
首页 > 其他好文 > 详细

九九乘法表

时间:2016-11-28 08:51:22      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:http   keyword   des   src   link   ble   xmlns   img   table   

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-cn">
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
    <title>网页标题</title>
    <meta name="keywords" content="关键字列表" />
    <meta name="description" content="网页描述" />
    <link rel="stylesheet" type="text/css" href="" />
    <style type="text/css"></style>
    <script type="text/javascript">
    document.write("<table align=‘center‘ border=‘1‘ style=‘border-collapse:collapse‘>")
    for(var i=1;i<=9;i++){
        document.write("<tr>");
        if(i%2==0){        
        }
        
        for(var j=1;j<=i;j++){
            document.write("<td>"+j+"×"+i+"="+i*j+"</td>");
        }if(j==i){
            document.write("<br />");
        }
        document.write("</tr>");
    }
    document.write("</table>")
    </script>
</head>
<body>

</body>
</html>

技术分享

 

九九乘法表

标签:http   keyword   des   src   link   ble   xmlns   img   table   

原文地址:http://www.cnblogs.com/lihang666/p/6107847.html

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