新工作的第一份任務就是給實現 限制Uploadify 上傳檔案格式為圖片
測試出來報錯,選擇了非圖片檔案,提示錯誤後,再選擇其他檔案,上傳時還是包含了之前清空的非圖片檔案
最後實現效果的程式碼是
//上傳檔案格式限制 'fileExt': "*.jpg;*.jpeg;*.gif;*.png;", 'fileDesc': "Please select *.jpg;*.jpeg;*.gif;*.png;", 'onSelect': function (e, queueId, fileObj) { var types = ['.jpg', '.jpeg', '.gif', '.png']; if ($.inArray(fileObj.type.toString().toLocaleLowerCase(), types) == -1) { alert("Please select the correct image file and upload it again!"); $('#uploadify').uploadifyCancel(queueId); uploadifyClearQueue(); } },
以下是兩個寫的很詳細關於Uploadify使用的博文
http://www.uploadify.com/documentation/ 官方下載 官方文件 官方演示