HTML:Flash无法在IE中加载(在Chrome和Firefox下完美运行)

时间:2014-01-22 19:46:41

标签: javascript jquery html flash

我有一个JSP网页,使用javascript / jquery加载Uploadify flash:

$(function() {
    $('#file_upload').uploadify({
        'queueSizeLimit' : 99999,
        'uploadLimit' : 99999,
        'fileTypeDesc' : 'Poker hand history Files',
        'fileTypeExts' : '*.txt; *.xml',
        'onUploadComplete' : function(file) { countFiles = countFiles + 1; },
        'onQueueComplete' : function(queueData) { refreshText(); },
        'removeTimeout' : 1,                
        'width'    : 276,
        'swf'      : '<%=rootUrl%>/uploadify/uploadify.swf',
        'uploader' : '<%=rootUrl%>/FileReceiver?<%=FileReceiver.TRANSACTION_ID_PARAM%>=<%=transactionId%>'
    });
});

这在Chrome和Firefox下运行良好但不适用于Internet Explorer(我使用的是IE11):任何想法/提示我应该看什么? (IE11控制台不表示任何错误,只是一些小警告)

可以在此位置找到该页面(请参阅Chrome / Firefox下的“选择文件”按钮,该按钮不适用于IE11):

http://72.249.82.50/

谢谢! 托马斯

0 个答案:

没有答案