ブラウズ後にファイル名を読み取り、POST を使用して別のページに送信するコードを以下に示します。$.post の後にアラートがある場合は、正常に動作します。警告メッセージを削除すると、投稿はファイル名を別のページに転送しません。
<input type="file" name="fileupload" id="fileupload" value="">
// Jquery コード
$("#fileupload").change(function() {
if ($("#fileupload").val().length > 0) {
$.post("ReadExcel.jsp", {
filename: $("#fileupload").val(),
processId: < %= processId % >
});
alert($("#fileupload").val()); // **If I remove this alert, then the code doesn't works**
}
location.reload();
});