摘要: var element = document.getElementById("box"); element.scrollIntoView();//顶部 element.scrollIntoView(false);//底部 element.scrollIntoView({block: "end"}); element.scrollIntoView({behavior: "instant", b... 阅读全文
posted @ 2018-12-19 21:14 neo_o 阅读(2438) 评论(1) 推荐(0) 编辑
摘要: 在build->webpack.base.conf.js里添加一句代码: 具体位置在module->rules下 阅读全文
posted @ 2018-11-15 18:04 neo_o 阅读(2815) 评论(0) 推荐(0) 编辑
摘要: var arr=[{a:1},{a:3},{a:2}]; function objSort(prop){ return function (obj1, obj2) { var val1 = obj1[prop]; var val2 = obj2[prop]; if (!isNaN(Number(val1)) && !isNaN(Numbe... 阅读全文
posted @ 2018-10-11 15:10 neo_o 阅读(4375) 评论(0) 推荐(0) 编辑
摘要: 1.安装指定版本 2.更新依赖包 3.遇到报错问题及解决方法 阅读全文
posted @ 2018-10-11 14:49 neo_o 阅读(322) 评论(0) 推荐(0) 编辑
摘要: Cross-origin plugin content from http://vjs.zencdn.net/swf/5.0.0-rc1/video-js.swf must have a visible size larger than 400 x 300 pixels, or it will be 阅读全文
posted @ 2018-07-11 14:33 neo_o 阅读(10649) 评论(0) 推荐(1) 编辑
摘要: 1.父组件向子组件传值: 实例截图: 实例代码: /*子组件代码*/ //child.vue <template> <div style="border: 1px solid red;margin: 10px;"> <h2>子组件</h2> <p>{{name}}</p> </div> </temp 阅读全文
posted @ 2018-06-01 16:38 neo_o 阅读(257) 评论(0) 推荐(1) 编辑
摘要: 效果图: 阅读全文
posted @ 2018-05-31 16:02 neo_o 阅读(133) 评论(0) 推荐(0) 编辑
摘要: function formatJson(msg) { var rep = "~"; var jsonStr = JSON.stringify(msg, null, rep) var str = ""; for (var i = 0; i 1) { var text = jsonStr.charAt... 阅读全文
posted @ 2018-05-25 17:52 neo_o 阅读(3794) 评论(0) 推荐(1) 编辑
摘要: 如图: 阅读全文
posted @ 2018-05-23 10:44 neo_o 阅读(3643) 评论(0) 推荐(0) 编辑
摘要: function isNumber(val) { var regPos = /^\d+(\.\d+)?$/; //非负浮点数 var regNeg = /^(-(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*)))$/; //负浮点数 if(regPos.test(val) || regN... 阅读全文
posted @ 2018-05-02 18:36 neo_o 阅读(71520) 评论(3) 推荐(1) 编辑
摘要: /*转化函数*/ function(data, attributes) { let resData = data; let tree = []; for(let i = 0; i < resData.length; i++) { if(resData[i][attributes.parentId] === attributes.rootId) { let obj = { ... 阅读全文
posted @ 2018-05-02 18:30 neo_o 阅读(8884) 评论(0) 推荐(0) 编辑
摘要: function getCountDays(ym) { var curDate = new Date(ym); /* 获取当前月份 */ var curMonth = curDate.getMonth(); /* 生成实际的月份: 由于curMonth会比实际月份小1, 故需加1 */ curDat 阅读全文
posted @ 2018-05-02 18:16 neo_o 阅读(3675) 评论(0) 推荐(0) 编辑
摘要: 在页面中加入以下代码: window.console = window.console || (function() { var c = {}; c.log = c.warn = c.debug = c.info = c.error = c.time = c.dir = c.profile = c. 阅读全文
posted @ 2018-03-19 15:24 neo_o 阅读(204) 评论(0) 推荐(0) 编辑
摘要: ( )如果两个引用值指向同一个对象、数组、或函数,则他们是相等的。如果指向不同的对象,则他们是不相等的,尽管两个对象具有完全一样的属性。 (==)如果其中一个值是true,则将其转换为1再进行比较,如果其中一个值是false,则将其转换为0再进行比较。 阅读全文
posted @ 2018-02-24 11:23 neo_o 阅读(323) 评论(0) 推荐(0) 编辑

愿你的生活只有诗和远方