前端
吴小雨
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
vue读取地址栏参数
vue读取地址栏参数 第一步:创建utils.js文件 export default{ getUrlKey: function (name) { return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.href) ...转载 2019-04-24 13:58:22 · 3254 阅读 · 0 评论 -
VUE定时器 延迟加载
vue 定时器 延迟加载 var time; //创建定时器 clearTimeout(time) time = setTimeout(function (){ //延迟加载处理的方法 location.href= `/recharge`; }, 500); ...原创 2019-04-24 14:35:45 · 4357 阅读 · 0 评论
分享