摘要: $(document).on('click', '.class', function() { console.log($(this).attr('id')); }); 阅读全文
posted @ 2019-06-26 17:00 羽鱼 阅读(639) 评论(0) 推荐(0) 编辑
摘要: .el-dialog { position: absolute; top: 50%; left: 50%; margin: 0 !important; transform: translate(-50%, -50%); max-height: calc(100% - 30px); max-width 阅读全文
posted @ 2019-06-12 15:55 羽鱼 阅读(4663) 评论(0) 推荐(0) 编辑
摘要: {$content|raw|htmlspecialchars_decode} 阅读全文
posted @ 2019-06-12 11:36 羽鱼 阅读(2956) 评论(1) 推荐(1) 编辑
摘要: 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 羽鱼 阅读(3180) 评论(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 羽鱼 阅读(40000) 评论(1) 推荐(0) 编辑
摘要: keep-alive vue组件缓存避免多次加载相应的组件 阅读全文
posted @ 2019-05-10 16:56 羽鱼 阅读(922) 评论(0) 推荐(0) 编辑
摘要: 在网址后面/#/前面加个随机数 阅读全文
posted @ 2019-05-07 16:38 羽鱼 阅读(417) 评论(0) 推荐(0) 编辑