0

这是我的html代码

 <div class="s-field" id="fileBox">
    <div style="display: block; width: 100px; height: 20px; overflow: hidden;">
      <button style="width: 110px; height: 30px; position: relative; top: -5px; left: -5px;"
                                    title="Upload File">
                                    Upload File
       </button>
       <asp:FileUpload runat="server" ID="upload_input" CssClass="file" ClientIDMode="Static"
                                    Style="font-size: 50px; width: 120px; opacity: 0; filter: alpha(opacity: 0);
                                    position: relative; top: -40px; left: -20px" />
     </div>
 </div>

我的jQuery

$('#upload_input').change(function (e) {

    var n = $(this).val();
   // alert(n); << if i comment out this alert it crashes the IE9

    var name = n.split('\\');
    var filename = name[name.length - 1];
    $('#fileBox').hide();
    $('#fileValue').html(filename);
    $('#fileValueDiv').show();

});

如果我注释掉警报语句,它会使 IE9 崩溃。其他浏览器没问题。在此处输入图像描述
我不知道是什么原因。

谢谢你的帮助

4

2 回答 2

0

试着把

window.alert = null ; 

在您的 javascript 顶部并取消注释警报,它应该可以正常工作。请注意,这只是一种解决方法

于 2012-04-19T01:00:49.810 回答
0

我假设你的代码在$('document').ready(function() { ...thingymajiggy...});

否则它可能是您安装中的其他内容。在其他电脑上尝试新的 E9 实例

于 2012-05-12T17:39:59.667 回答