上一页 1 2 3 4 5 6 7 8 9 ··· 17 下一页
摘要: <script type="text/javascript"> // 定了一个类 class Person{ // 定义一个构造方法 constructor(name,age){ console.log('父类构造方法') this.name=name; this.age=age; } // 定义普 阅读全文
posted @ 2020-07-26 09:59 爱跑步的乌龟 阅读(149) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript"> // 子串识别 /* indexOf 查找字符串中是否包含指定字符串 查找第一次出现的位置,从0开始 includes():返回布尔值,判断是否找到参数字符串。 startsWith():返回布尔值,判断参数字符串是否在原字符串的头部。 阅读全文
posted @ 2020-07-26 09:57 爱跑步的乌龟 阅读(946) 评论(0) 推荐(0) 编辑
摘要: es6三点运算符 <script type="text/javascript"> function func(a,b,...params){ console.log(params); params.forEach(function(item,index){ console.log(item,inde 阅读全文
posted @ 2020-07-26 09:55 爱跑步的乌龟 阅读(157) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript"> let obj={name:'jack',age:20}; console.log(`es6:我的名字是:${obj.name},年龄是:${obj.age}`); </script> 阅读全文
posted @ 2020-07-26 09:53 爱跑步的乌龟 阅读(102) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript"> let obj = {username:'java1234',pwd:'123456'}; /* let username=obj.username; let pwd=obj.pwd;*/ let{username,pwd} = obj 阅读全文
posted @ 2020-07-26 09:50 爱跑步的乌龟 阅读(90) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript"> let username='java1234'; let pwd='123456'; /*let obj={ username:username, pwd:pwd, getUserName:function(){ return this 阅读全文
posted @ 2020-07-26 09:48 爱跑步的乌龟 阅读(131) 评论(0) 推荐(0) 编辑
摘要: $faceidResult = empty($faceidResult) ? "NULL" : "'$faceidResult'"; $sql = "INSERT INTO Cln_User (ID,Tel_Code, OtherImage, Ip_Country, Browser_Language 阅读全文
posted @ 2020-05-06 17:51 爱跑步的乌龟 阅读(2871) 评论(0) 推荐(0) 编辑
摘要: 1、超时机制Timeout package mian func workerTimeout(start chan bool) { timeout := time.After(10 * time.Second) for { select { // … do some stuff case <- tim 阅读全文
posted @ 2020-04-24 18:46 爱跑步的乌龟 阅读(1057) 评论(0) 推荐(0) 编辑
摘要: update email_content set Content = replace(Content ,'001.11','002.22') Error Code: 1175. You are using safe update mode and you tried to update a tabl 阅读全文
posted @ 2020-04-24 14:14 爱跑步的乌龟 阅读(364) 评论(0) 推荐(0) 编辑
摘要: <script> console.log(isIE()) function isIEBro() { if(!!window.ActiveXObject || "ActiveXObject" in window){ return true; }else{ return false; } } </scr 阅读全文
posted @ 2020-04-23 10:29 爱跑步的乌龟 阅读(285) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 17 下一页