1
我正在使用uploadify插件允許用戶上傳文件到我的網站。該腳本工作正常鉻,但在IE無法正常工作和FirefoxUploadify瀏覽器兼容性問題
$(function() {
$('#file_upload').uploadify({
'checkExisting' : 'check-exists.php',
'buttonText' : 'Select project',
'fileSizeLimit' : '163840KB',
'fileTypeDesc' : 'Image Files',
'fileTypeExts' : '*.zip; *.rar',
'swf' : 'uploadify.swf',
'uploader' : 'uploadify.php',
'onUploadError' : function(file, errorCode, errorMsg, errorString) {
$("input[type=submit]").attr("disabled", "disabled");
alert('The file ' + file.name + ' could not be uploaded: ' + errorString);
},
'onUploadSuccess' : function(file, data, response) {
$("input[type=submit]").removeAttr("disabled");
},
});
任何建議:)