新工作的第一份任务就是给实现 限制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) == -) {
alert("Please select the correct image file and upload it again!");
$('#uploadify').uploadifyCancel(queueId);
uploadifyClearQueue();
}
},
以下是两个写的很详细关于Uploadify使用的博文