vue 团购倒计时 发表于 2017-08-04 | | 阅读次数 countDown.vue <template> <p class="count-down"> {{content}} </p> </template> <script> export default { ... 阅读全文 »
JavaScript 字符串中提取数字 发表于 2017-08-04 | | 阅读次数 方法一 parseInt()var str ="4500元"; var num = parseInt(str); alert(num);//4500 如果字符串前面有非数字字符,上面这种方法就不行了: var str ="价格:4500元"; var n ... 阅读全文 »
JS获取各种浏览器窗口大小的方法 发表于 2017-08-02 | | 阅读次数 // 获取窗口宽度 if (window.innerWidth) winWidth = window.innerWidth; else if ((document.body) && (document.body.clientWidth)) winWidth = ... 阅读全文 »
sublime——.vue文件格式化插件 发表于 2017-07-19 | | 阅读次数 1、先安装HTML/CSS/js Prettify 插件:(1) ctrl+shift+p(2) 点击Install Package,然后搜索HTML-CSS-JS Prettify,按确定,等待安装结束。 2、安装HTML/CSS/JS Prettify后 :Preferences->Pac ... 阅读全文 »
JS实现HTML标签转义及反转义 发表于 2017-07-13 | | 阅读次数 原文地址:http://blog.600km.xyz/2015/12/15/js-encode-html-tags/ 原文地址:http://blog.csdn.net/wangyuheng77/article/details/50315051 简单说一下业务场景,前台用户通过input输入内容,在 ... 阅读全文 »
vue-notes-6 vue-lazyload懒加载插件 发表于 2017-06-05 | | 阅读次数 1.懒加载插件地址: [https://github.com/hilongjw/vue-lazyload](https://github.com/hilongjw/vue-lazyload "vue-lazyload") 2.用needsclick类来解决fastclick和be ... 阅读全文 »
vue-notes-5 scroll父子组件通信 发表于 2017-06-05 | | 阅读次数 父组件: <scroll ref="scroll" class="recommend-content" :data="discList"> <div> <div v-if="recomme ... 阅读全文 »
vue-notes-3 jsonp+Promise 发表于 2017-06-03 | | 阅读次数 download GitHub上面的jsonp库https://github.com/webmodules/jsonp Install for node.js or browserify using npm: $ npm install jsonp API jsonp(url, opts, fn) ... 阅读全文 »