問題是這樣的:
使用:<input type="file" id="file" multiple size="5" accept="image/*">
#進行圖片檔案選擇,如果沒有新增accept屬性限定的時候,開啟檔案選擇視窗是很快的,但是新增了accept限定之後開啟檔案選擇視窗時就會變得很慢。
怪我咯2017-06-29 10:11:53
嘗試解決方案指定MIME類型
<input type="file" accept="image/gif,image/jpeg,image/jpg,image/png,image/svg">