摘要: <script> var score = Number(prompt('请输入一百内数字')); if (score <= 100 && score >= 90) { alert('优'); } else if (score < 90 && score >= 80) { alert('良'); } 阅读全文
posted @ 2019-12-25 09:54 枚齐元子 阅读(579) 评论(0) 推荐(0) 编辑
摘要: js代码: <script> // var num1 = 32, // num2 = 43, // num3 = 98; // if (num1 > num2) { // if (num1 > num3) { // alert(num1); // } else { // alert(num3); / 阅读全文
posted @ 2019-12-25 09:40 枚齐元子 阅读(3617) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html><head><meta charset="utf-8"><title>时间选择</title><script type="text/javascript"> function doyear(){ var select = document.getElemen 阅读全文
posted @ 2018-04-19 15:06 枚齐元子 阅读(154) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html> <head> <script language="JavaScript"> function close1(){ document.getElementById("sh").style.display="none"; } function show(){ 阅读全文
posted @ 2018-01-09 11:31 枚齐元子 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 1.不加内边距的div: <div style="width:150px; height:150px; "> <div style="width:100px; height:100px; "> 123 </div></div> 2.内边距距顶部10px的div: <div style="width: 阅读全文
posted @ 2017-10-23 09:26 枚齐元子 阅读(194) 评论(0) 推荐(0) 编辑
摘要: <html><head><style type="text/css">#login{width: 300px;height: 200px;position: absolute;left: 50%;top: 50%;margin-left: -150px;margin-top: -100px;back 阅读全文
posted @ 2017-10-09 12:00 枚齐元子 阅读(78) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html><head> <meta charset="utf-8"> <title>菜鸟教程(runoob.com)</title> <script>function writeText(txt){ document.getElementById("desc").in 阅读全文
posted @ 2017-09-06 18:01 枚齐元子 阅读(429) 评论(0) 推荐(0) 编辑
摘要: 1.Value的值为只读的(defineProperty.规定属性,): <script>var person={};Object.defineProperty(person,"name",{ writable: flase, //如果这里改为true,则第二个弹出框则为Grey value:"Ni 阅读全文
posted @ 2017-09-05 11:47 枚齐元子 阅读(108) 评论(0) 推荐(0) 编辑
摘要: <script> function selectForm(lowerValue,upperValue){ var choices=upperValue-lowerValue+1; return Math.floor(Math.random()*choices+lowerValue) } var co 阅读全文
posted @ 2017-09-05 10:30 枚齐元子 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 1.仅使用html和css <!DOCTYPE html><html><head><style>*{margin:0;padding: 0;list-style: none;text-decoration: none;}#nav{width: 600px;height: 40px;backgroun 阅读全文
posted @ 2017-06-28 11:50 枚齐元子 阅读(208) 评论(0) 推荐(0) 编辑