2012-06-02 236 views
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"); 
    }, 

    }); 

任何建議:)

回答

1

您發佈的代碼有一個尾隨逗號(最後一個),這可能不會在一些工作IE版本(see this question)。

此外,您的括號並非全部關閉。嘗試更改});}) });