chrome 点击上传文件选择框会延迟几秒才会显示 反应很慢

12-08

chrome浏览器这个框里本地上传按钮点了半天才有反应,研究半天发现是因为 <input type="file" name="editormd-image-file" accept="image/*"> 里边 accept="image/*" 惹的祸。

so,修改了vendor/bower/editor.md/plugins/image-dialog/image-dialog.js 第54行为
"<input type=\"file\" name=\"" + classPrefix + "image-file\" accept=\"image/jpg,image/jpeg,image/png,image/gif\" />" +

总结:accept不要写通配符*,尽量一个一个写

over