上传浏览器兼容性问题

时间:2012-06-02 18:22:16

标签: jquery file-upload upload uploadify

我使用uploadify插件允许用户将文件上传到我的网站。该脚本在chrome中工作正常,但在ie和firefox中不起作用

  $(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 个答案:

答案 0 :(得分:1)

您发布的代码有一个尾随逗号(最后一个),可能在某些版本的IE(see this question)中无效。

此外,您的括号并非全部关闭。尝试将});更改为}) });