Javascript在表单上验证提交

时间:2012-09-27 06:52:20

标签: php javascript html

您好,我想在提交表单之前验证字段值,这里是我的代码

<table width="600" border="0" align="left">
<tr>
<script type="text/javascript">
function previewPrint()
{

var RegNumber = document.getElementById('PP_RegNoTextBox').value;
var PassportNo = document.getElementById('PP_PassportNoTextBox').value;
if (RegNumber=="")
{
    alert("Please enter your Reg No.!");
    document.getElementById('RegNoTextBox').focus();
    return false;
}
if (PassportNo=="")
{
    alert("Please enter your Passport No.!");
    document.getElementById('PassportNoTextBox').focus();
    return false;
}
    //window.open('regformview.php?RegNumber=RegNumber');
    }
    </script>
<form name="ppform" onSubmit="return previewPrint();" method="post" action="regformview.php">   
<td width="100" align="LEFT" class="font8">&nbsp; </td>
<td width="337" align="LEFT" class="font8"><u>Preview your Application:</u> Please provide requested details.<br>
  Reg No.: <input type="text" name="printregno" id="PP_RegNoTextBox" class="input2"> Passport No.:  <input type="text" name="printemail" class="input2"><input type="hidden" name="flagging" id="PP_PassportNoTextBox" value="1" class="input2">&nbsp;</td>
<td width="50" align="LEFT" class="font8"><div style="float:left; background-image:url(images/printPreview1.jpg); background-repeat:no-repeat;">   
  <input type="image" src="images/printPreview1.jpg" name="ppbutton" value="" onMouseOver="this.src='images/printPreview2.jpg'" onMouseOut="this.src='images/printPreview1.jpg'"></div></td>

</form>
   </tr>
</table>

问题是它正确显示警告框,如果它是空白但页面在提交后导航到regformview.php。如何在验证后导航到regformview.php。?

3 个答案:

答案 0 :(得分:4)

这些是未定义的:

document.getElementById('RegNoTextBox').focus();
document.getElementById('PassportNoTextBox').focus();

它应该是:

document.getElementById('PP_RegNoTextBox').focus();
document.getElementById('PP_PassportNoTextBox').focus();

答案 1 :(得分:2)

一切都很好,除非您的脚本中有错误,即使验证失败也允许您提交。

更改以下行

 document.getElementById('PassportNoTextBox').focus();

document.getElementById('RegNoTextBox').focus();

<强>作为

 document.getElementById('PP_PassportNoTextBox').focus();

 document.getElementById('PP_RegNoTextBox').focus();

答案 2 :(得分:0)

试试这个应该有效。

onSubmit="previewPrint();return false;"
相关问题