2020年3月11日
摘要: 1.首先通过后台获取想过公众好的appId 2.通过appId跳转 https://open.weixin.qq.com/connect/oauth2/authorize?appid=APPID&redirect_uri=REDIRECT_URI&response_type=code&scope=S 阅读全文
posted @ 2020-03-11 18:03 weblsy 阅读(389) 评论(0) 推荐(0) 编辑
  2019年12月5日
摘要: vue的data中: 然后定义了一个过滤器: filters:{ testStr(value,reg){ console.log(reg.test(value));//true console.log(reg.test(value));//false return reg.test(value); 阅读全文
posted @ 2019-12-05 17:20 weblsy 阅读(340) 评论(0) 推荐(0) 编辑
  2019年6月25日
摘要: 这是怎么一回事?原因就是JavaScript引擎将第一个{}解释成了一个空的代码块并忽略了它,相当于 为什么第一个{}会被解析成代码块呢?原因是,整个输入被解析成了一个语句,如果一个语句是以左大括号开始的,则这对大括号会被解析成一个代码块.所以,你也可以通过强制把输入解析成一个表达式来修复这样的计算 阅读全文
posted @ 2019-06-25 16:19 weblsy 阅读(95) 评论(0) 推荐(0) 编辑
  2019年2月20日
摘要: var aLink = document.createElement("a"); aLink.download = ''; aLink.href = url; if (document.createEvent) { var e = document.createEvent('MouseEvents'); ... 阅读全文
posted @ 2019-02-20 15:47 weblsy 阅读(176) 评论(0) 推荐(0) 编辑
  2018年12月27日
摘要: 这样写就可以了 阅读全文
posted @ 2018-12-27 15:47 weblsy 阅读(5371) 评论(0) 推荐(0) 编辑
  2018年11月29日
摘要: 这样调用此递归函数将会返回undefine,因为到倒数第二次的返回值就没有保存了,最后的return只是返回给了倒数第二次的调用 正确的返回 阅读全文
posted @ 2018-11-29 21:16 weblsy 阅读(121) 评论(0) 推荐(0) 编辑
  2018年11月28日
摘要: 这个插件为SmtpJS 官网地址为 https://www.smtpjs.com/ 方法很简单 生成token 阅读全文
posted @ 2018-11-28 18:45 weblsy 阅读(3988) 评论(0) 推荐(0) 编辑
  2018年11月15日
摘要: .img-box { width: 100%; height: 330px; position: relative; border: 1px solid #eee; } .img-box img{ position: absolute; top: 50%; left: 50%; -webkit-transform: translat... 阅读全文
posted @ 2018-11-15 14:57 weblsy 阅读(134) 评论(0) 推荐(0) 编辑
  2018年11月1日
摘要: //链接 var urlRegExp = new RegExp('(https?|ftp|file)://[-A-Za-z0-9+&@#/%?=~_|!:,.;]+[-A-Za-z0-9+&@#/%=~_|]'); 阅读全文
posted @ 2018-11-01 17:15 weblsy 阅读(102) 评论(0) 推荐(0) 编辑
  2018年10月15日
摘要: function SuperType(name,age) { this.name = name; this.age = age; } SuperType.prototype.sayName = function(){ console.log(this.name); } function SubType(na... 阅读全文
posted @ 2018-10-15 17:46 weblsy 阅读(108) 评论(0) 推荐(0) 编辑