1

ユーザーが自分の Web サイトにファイルをアップロードできるようにするために、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");
    },

    });

助言がありますか :)

4

1 に答える 1

1

投稿したコードには末尾のコンマ (最後のコンマ) があり、IE の一部のバージョンでは動作しない可能性があります (この質問を参照してください)。

また、括弧がすべて閉じているわけではありません。に変更});してみてください}) });

于 2012-10-11T09:13:31.340 に答える