我有一个我想提交的表单,所以当我点击提交时,它会转到 selectorpage.php 并找到所选的函数类型,例如登录,它进一步调用控制器来执行函数。我遇到的问题是js中有一个名为validateForm()的函数,只要我单击提交按钮,它就会转到selectorPage.php。我想停止表单提交,通过js进行验证,然后从那里提交表单,我使用了onsubmit = return false; 在表单标签中,但它只是阻止了进一步做任何事情的形式。而且我也不知道如何将表单重定向到 selectorPage 如果它以某种方式在 js 中工作。所以有人想告诉我如何从 js 提交表单,然后将该页面重定向到 selectorPage.php。谢谢
<form method="post" action="selector.php?type=login" id="login" id="loginForm">
<div class="row">
<div class="offset1 span1">
<div class="lbel">
<label class="control-label" for "loginName">
Username/Email
</label>
</div>
<div class="lbl_inpuCnt">
<input type="text" class="input-xlarge" id="loginName"
name="loginName" maxlength="50"/>
</div>
<div id="usernameError"> </div>
<div class="lbel">
<label class="control-label" for="loginPassword">
Password
</label>
</div>
<div class="controls">
<input type="password" class="input-xlarge"
id="loginPassword" name="loginPassword"
maxlength="50"/>
</div>
<div id="passwordError"> </div><br/>
</div>
</div>
<div style="margin-left: 55px;">
<input class="btn" style="width: 80px;" type="reset"
name="reset" value="Reset"/>
<input class="btn" style="width: 80px;" type="submit"
name="submit" value="Login" onclick="validateForm();"/>
</div>
</form>
这是根据上面代码的javascript
function validateForm(){
form = document.forms['loginForm'];
if(document.getElementById('loginName').value == "")
document.getElementById('usernameError').innerHTML = 'Invalid username or email';
else{
document.getElementById('usernameError').innerHTML = " ";
form.submit();
}
} //suppose it for the email validation only for the time being