摘要:
<script> for (i = 1; i <= 9; i++) { //控制为9行 for (j = 1; j <= i; j++) { document.write(j + "*" + i + "=" + j * i + " "); //每次循环,i不变,j在 阅读全文
摘要:
<script> var num = parseInt(prompt("请输入一个正整数")); var count = 0; //计数器 while (true) { //循环表达式为true,永远循环 if (num > 0) { break; //除非符合这个条件,break,退出此循环 } 阅读全文
摘要:
<script> var num = parseInt(prompt("请输入一个人整数")); var cheng = 1; for (i = 1; i <= num; i++) { cheng = cheng * i; } alert("这个数的阶乘为" + cheng); </script> 阅读全文
摘要:
.box { /* 大盒子宽高已知 */ width: 400px; height: 400px; background: #Ccc; text-align: center; } .box1 { /* 小盒子宽高未知 */ width: 200px; height: 100px; backgroun 阅读全文
摘要:
.box {/* 大盒子高宽未知 */ width: 400px; height: 400px; background: #Ccc; position: relative; } .box1 {/* 小盒子高宽已知 */ width: 100px; height: 100px; background: 阅读全文
摘要:
.box {/* 大盒子 */ width: 400px; height: 400px; background: #Ccc; display: flex; justify-content: center;//水平居中 align-items: center;//垂直居中 } .box1 {/* 小盒 阅读全文
摘要:
.box {/* 大盒子 */ width: 400px; height: 400px; background: #Ccc; position: relative; } .box1 {/* 小盒子 */ width: 100px; height: 100px; background: red; po 阅读全文
摘要:
.box {/*大盒子*/ width: 400px; height: 400px; background: #Ccc; position: relative; } .box1 {/* 小盒子 */ width: 200px; height: 100px; background: red; marg 阅读全文