摘要: 分片上传文件 阅读全文
posted @ 2017-09-20 18:26 wingzw 阅读(2724) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-09-18 16:15 wingzw 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-09-18 16:10 wingzw 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-09-18 15:53 wingzw 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 1 function User(name,passwordHash){ 2 this.name=name; 3 this.passwordHash=passwordHash; 4 this.toString=function()... 阅读全文
posted @ 2017-09-07 14:55 wingzw 阅读(141) 评论(0) 推荐(0) 编辑
摘要: var names=["Fred","Wilma","Pebbles"]; var upper=names.map(function(name){ return name.toUpperCase(); }); upper;//["FRED", "WILMA", "PEBBLES"] var alphabet=""; for(var i=0;i<26;i++)... 阅读全文
posted @ 2017-09-07 11:49 wingzw 阅读(125) 评论(0) 推荐(0) 编辑
摘要: function sandwichMaker(magicIngredient){ function make(filling){ return magicIngredient +" and "+filling; } return make; ... 阅读全文
posted @ 2017-09-06 18:28 wingzw 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 样式模块分为两大块,精确获取样式值与设置样式,精确是用于修饰符获取的。由于样式分布为外部样式,内部样式与行内样式,再加个impotant对选择器的权重的干扰,我们实际很难看到元素是应用了那块的样式。因此,样式模块,80%的比重在于获取这一块,像offset,滚动条也纳入这一块。 大体上,我们在标准浏 阅读全文
posted @ 2017-09-05 16:05 wingzw 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-09-05 16:03 wingzw 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 4 5 6 7 21 22 23 24 25 26 27 原始图片 28 29 30 31 使用灰度... 阅读全文
posted @ 2017-08-31 19:20 wingzw 阅读(173) 评论(0) 推荐(0) 编辑