摘要: SELECT * FROM rrUNIONSELECT * FROM ii 参考: https://zhidao.baidu.com/question/409081053.html 阅读全文
posted @ 2020-07-01 23:38 凯宾斯基 阅读(458) 评论(0) 推荐(0)
摘要: https://www.w3school.com.cn/js/js_htmldom.asp 看到这里 https://www.w3school.com.cn/js/js_htmldom_elements.asp 阅读全文
posted @ 2020-07-01 16:54 凯宾斯基 阅读(217) 评论(0) 推荐(0)
摘要: <script>// 创建对象:var person = { firstName: "Bill", lastName : "Gates", id : 678, fullName : function() { return this.firstName + " " + this.lastName; } 阅读全文
posted @ 2020-07-01 13:57 凯宾斯基 阅读(385) 评论(0) 推荐(0)
摘要: 参考: https://www.w3school.com.cn/js/js_scope.asp 全局(在函数之外)声明的变量拥有全局作用域。 不通过关键词 var 创建的变量总是全局的,即使它们在函数中创建。 参考: https://www.w3school.com.cn/js/js_let.asp 阅读全文
posted @ 2020-07-01 02:26 凯宾斯基 阅读(209) 评论(0) 推荐(0)
摘要: 参考: https://www.w3school.com.cn/js/js_errors.asp 现在有 else了 try: 代码块except: try报错执行这块else: try没有报错 继续执行else这块 finally: 均会执行这块 阅读全文
posted @ 2020-07-01 02:03 凯宾斯基 阅读(205) 评论(0) 推荐(0)
摘要: 获取字符之间的字符 参考: https://zhidao.baidu.com/question/391448293854234885.html 其他正则: https://www.w3school.com.cn/js/js_regexp.asp 阅读全文
posted @ 2020-07-01 01:51 凯宾斯基 阅读(162) 评论(0) 推荐(0)
摘要: <script>var i ,a;i=1;a=2;if(i==2 & a==2){document.write(123);}</script> 阅读全文
posted @ 2020-07-01 01:35 凯宾斯基 阅读(409) 评论(0) 推荐(0)
摘要: break用法 (comtinue 一样) for (i = 0; i < 10; i++) { if (i 3) { break; } text += "数字是 " + i + "<br>";} 其中如果有标签引用,则 break 语句可用于跳出任意代码块: 代码块指的是 { 与 } 直接的代码片 阅读全文
posted @ 2020-07-01 01:18 凯宾斯基 阅读(403) 评论(0) 推荐(0)
摘要: https://www.w3school.com.cn/js/js_objects.asp https://www.w3school.com.cn/js/js_object_definition.asp 阅读全文
posted @ 2020-07-01 00:08 凯宾斯基 阅读(215) 评论(0) 推荐(0)
摘要: for - 多次遍历代码块 for/in - 遍历对象属性 while - 当指定条件为 true 时循环一段代码块 do/while - 当指定条件为 true 时循环一段代码块 https://www.w3school.com.cn/js/js_loop_for.asp 阅读全文
posted @ 2020-07-01 00:00 凯宾斯基 阅读(130) 评论(0) 推荐(0)