摘要: //全部导入import people from './example' //有一种特殊情况,即允许你将整个模块当作单一对象进行导入//该模块的所有导出都会作为对象的属性存在import * as example from "./example.js"console.log(example.name 阅读全文
posted @ 2019-08-17 15:20 chenjacky 阅读(269) 评论(0) 推荐(0) 编辑
摘要: function formatTime(time) { if (typeof time !== 'number' || time < 0) { return time } var hour = parseInt(time / 3600) time = time % 3600 var minute = 阅读全文
posted @ 2019-07-20 11:55 chenjacky 阅读(1275) 评论(0) 推荐(0) 编辑
摘要: var is = new IScroll('#wrapper2', { scrollX: true, scrollY: false, click: true, keyBindings: true, //加入以下三个可解决 disablePointer:true, disableTouch:false 阅读全文
posted @ 2019-07-20 11:19 chenjacky 阅读(965) 评论(0) 推荐(0) 编辑
摘要: 在高版本的jquery引入prop方法后,什么时候该用prop?什么时候用attr?它们两个之间有什么区别?这些问题就出现了。 关于它们两个的区别,网上的答案很多。这里谈谈我的心得,我的心得很简单: 对于HTML元素本身就带有的固有属性,在处理时,使用prop方法。对于HTML元素我们自己自定义的D 阅读全文
posted @ 2019-01-19 14:12 chenjacky 阅读(114) 评论(0) 推荐(0) 编辑
摘要: $('#animationSandbox').removeClass().addClass(x + ' animated').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', fun 阅读全文
posted @ 2019-01-12 01:11 chenjacky 阅读(148) 评论(0) 推荐(0) 编辑
摘要: JS排序 键值对 var sortBy=function (filed,rev,primer){ rev = (rev) ? -1 : 1; return function (a, b) { a = a[filed]; b = b[filed]; if (typeof (primer) != 'un 阅读全文
posted @ 2019-01-07 11:08 chenjacky 阅读(1459) 评论(0) 推荐(0) 编辑