会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
流了个年
博客园
首页
新随笔
联系
订阅
管理
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
阅读(553)
评论(0)
推荐(0)
编辑
2019年12月5日
关于reg.lastIndex
摘要: 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
阅读(350)
评论(0)
推荐(0)
编辑
2019年6月25日
类型转换
摘要: 这是怎么一回事?原因就是JavaScript引擎将第一个{}解释成了一个空的代码块并忽略了它,相当于 为什么第一个{}会被解析成代码块呢?原因是,整个输入被解析成了一个语句,如果一个语句是以左大括号开始的,则这对大括号会被解析成一个代码块.所以,你也可以通过强制把输入解析成一个表达式来修复这样的计算
阅读全文
posted @ 2019-06-25 16:19 weblsy
阅读(97)
评论(0)
推荐(0)
编辑
2019年2月20日
触发a标签
摘要: 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
阅读(179)
评论(0)
推荐(0)
编辑
2018年12月27日
style 使用lang = ‘scss’ 报错
摘要: 这样写就可以了
阅读全文
posted @ 2018-12-27 15:47 weblsy
阅读(5386)
评论(0)
推荐(0)
编辑
2018年11月29日
递归误区
摘要: 这样调用此递归函数将会返回undefine,因为到倒数第二次的返回值就没有保存了,最后的return只是返回给了倒数第二次的调用 正确的返回
阅读全文
posted @ 2018-11-29 21:16 weblsy
阅读(124)
评论(0)
推荐(0)
编辑
2018年11月28日
js通过插件发送邮件
摘要: 这个插件为SmtpJS 官网地址为 https://www.smtpjs.com/ 方法很简单 生成token
阅读全文
posted @ 2018-11-28 18:45 weblsy
阅读(4031)
评论(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
阅读(139)
评论(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)
编辑
下一页