这是我的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 崩溃。其他浏览器没问题。
我不知道是什么原因。
谢谢你的帮助