javascript帮小弟我写一个纯javascript九九乘法表,就是只有javascript语言,没有html和CSS语言 200分!

2024-11-27 10:39:45
推荐回答(2个)
回答1:


    
    
js九九乘法表    
    
table {    
    width: 800px;    
    height: 300px;    
    border-collapse: collapse;    
}    
table th {    
    border: 1px solid #069;    
}    
body {    
    text-align: center;    
}    
h1 {    
    font-family: "微软雅黑", Verdana, sans-serif, "宋体";    
    color: #666;    
    font-weight: bold;    
    margin-bottom: 30px;    
}    
    
    
    
    
    document.write("");    
    var str = "js九九乘法表";    
    document.write("

" + str + "

");    
    for ( var x = 1; x <= 9; x++) {    
        document.write("");    
        for ( var y = 1; y <= x; y++) {    
            document.write("");    
        }    
        document.write("");    
    }    
    document.write("
" + x + "*" + y + "=" + (x * y) + "
");    
    
    

回答2:

等我哦,马上写出来


for(var i=1;i<10;i++){
for(var k=1;k<=i;k++){
document.write(k+"*"+i+"="+i*k+" ");
}
document.write("");
}

 亲,满意请采纳