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
阅读全文
摘要:"vetur.format.defaultFormatterOptions": { "js-beautify-html": { "wrap_attributes": "auto" }, "prettyhtml": { "printWidth": 100, "singleQuote": false,
阅读全文
摘要:<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
阅读全文
摘要:IOS在点击输入框弹出键盘 键盘回缩 后 定位没有相应改变 还有 textarea 也会弹出键盘 $("input").blur(function() { console.log("失去焦点"); window.scrollTo(0, 0); }); let input = document.get
阅读全文
摘要:关闭eslint 直接注释掉package.json文件中eslint的配置就可以了(以下是vue-cli的默认配置) "eslintConfig": { "root": true,////此项是用来告诉eslint找当前配置文件不能往父级查找 "env": { "node": true//此项指定
阅读全文
摘要:keep-alive vue组件缓存避免多次加载相应的组件
阅读全文
摘要:http://www.php.cn/js-tutorial-387360.html
阅读全文
摘要:function allWeeks(now_month) { //获取每个月的周 let week_array = []; let today = new Date(Date.parse(now_month)); let year = today.getFullYear(); let month =
阅读全文
摘要:来源:https://www.cnblogs.com/amunamuna/p/8997533.html 当使用FastClick 时,input框在ios上点击输入调取手机自带输入键盘不灵敏,有时候甚至点不出来。而安卓上完全没问题。这个原因是因为FastClick的点击穿透。解决方法: FastCl
阅读全文
摘要:vue 获取时间对象 需通过 事件的 event 对象 的 currentTarget @click="onClick( $event)" onClick(e){ //jquery $(e.currentTarget) console.log(e) // e.target 是你当前点击的元素 //
阅读全文
摘要:select{ width: auto; padding: 0 1%; //左右一定要设置 margin: 0; } option{ text-align:center; }
阅读全文