<form name='frm' action="Readcsvv" enctype="multipart/form-data" method="POST" >
<input type="file" name="file1"><br><br>
<input type="Submit" value="Upload File" onclick="showProgress()" method="POST">
<script>
function showProgress() {
if(document.frm.file1.value == "")
{
alert('Please upload a file');
}
else
{
document.getElementById('progress').style.display = 'block';
}
}
</script>
在我的jsp文件中,我有上面的代碼。如果沒有選擇文件,alert('Please upload a file')
顯示成功。但它調用了Servlet程序Readcsvv並進入下一頁。使用jsp調用javascript函數時出現問題
浸完警報框後,我想要編程在同一頁面中。我該怎麼做?
[汽車/地毯(http://stackoverflow.com/questions/245062/javascript-and-java/245068#245068)你知道嗎... – aioobe 2010-11-18 08:33:35