これが私の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 がクラッシュします。他のブラウザは問題ありません。
何が原因かわかりません。
助けてくれてありがとう