05 2019 档案

摘要:Text2Html(str) { if (str == null) { return ""; } else if (str.length == 0) { return ""; } str =str.replace(new RegExp("\n","gm"),"<br />") str =str.re 阅读全文
posted @ 2019-05-29 15:56 羽鱼 阅读(919) 评论(0) 推荐(0) 编辑
摘要:"vetur.format.defaultFormatterOptions": { "js-beautify-html": { "wrap_attributes": "auto" }, "prettyhtml": { "printWidth": 100, "singleQuote": false, 阅读全文
posted @ 2019-05-27 16:44 羽鱼 阅读(3181) 评论(0) 推荐(0) 编辑
摘要:<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0"> 阅读全文
posted @ 2019-05-24 11:36 羽鱼 阅读(1161) 评论(0) 推荐(0) 编辑
摘要:IOS在点击输入框弹出键盘 键盘回缩 后 定位没有相应改变 还有 textarea 也会弹出键盘 $("input").blur(function() { console.log("失去焦点"); window.scrollTo(0, 0); }); let input = document.get 阅读全文
posted @ 2019-05-24 11:28 羽鱼 阅读(2032) 评论(0) 推荐(0) 编辑
摘要:关闭eslint 直接注释掉package.json文件中eslint的配置就可以了(以下是vue-cli的默认配置) "eslintConfig": { "root": true,////此项是用来告诉eslint找当前配置文件不能往父级查找 "env": { "node": true//此项指定 阅读全文
posted @ 2019-05-22 14:45 羽鱼 阅读(40002) 评论(1) 推荐(0) 编辑
摘要:keep-alive vue组件缓存避免多次加载相应的组件 阅读全文
posted @ 2019-05-10 16:56 羽鱼 阅读(923) 评论(0) 推荐(0) 编辑
摘要:在网址后面/#/前面加个随机数 阅读全文
posted @ 2019-05-07 16:38 羽鱼 阅读(417) 评论(0) 推荐(0) 编辑
摘要:http://www.php.cn/js-tutorial-387360.html 阅读全文
posted @ 2019-05-06 17:46 羽鱼 阅读(861) 评论(0) 推荐(0) 编辑
摘要:function allWeeks(now_month) { //获取每个月的周 let week_array = []; let today = new Date(Date.parse(now_month)); let year = today.getFullYear(); let month = 阅读全文
posted @ 2019-05-06 17:26 羽鱼 阅读(147) 评论(0) 推荐(0) 编辑
摘要:来源:https://www.cnblogs.com/amunamuna/p/8997533.html 当使用FastClick 时,input框在ios上点击输入调取手机自带输入键盘不灵敏,有时候甚至点不出来。而安卓上完全没问题。这个原因是因为FastClick的点击穿透。解决方法: FastCl 阅读全文
posted @ 2019-05-06 11:31 羽鱼 阅读(1638) 评论(0) 推荐(0) 编辑
摘要:vue 获取时间对象 需通过 事件的 event 对象 的 currentTarget @click="onClick( $event)" onClick(e){ //jquery $(e.currentTarget) console.log(e) // e.target 是你当前点击的元素 // 阅读全文
posted @ 2019-05-05 17:12 羽鱼 阅读(5458) 评论(0) 推荐(0) 编辑
摘要:select{ width: auto; padding: 0 1%; //左右一定要设置 margin: 0; } option{ text-align:center; } 阅读全文
posted @ 2019-05-05 15:28 羽鱼 阅读(6243) 评论(0) 推荐(0) 编辑