html问题。一个FORM表单,怎样让submit验证指定数据,验证成功后在提交至指定页面中呢?

如一个登陆模块,先验证用户名是否为空,如果为空,SUBMIT点击时永远提交不到from表单指定页面。只能是表单形式发送噢!而且不能再表单指定的页面中去验证传进来的值。

js方法:
function check(){
var name = document.getElementById("name").value;
if(name == null || name == ''){
alert("用户名不能为空");
return false;
}
return true;
}

<form name="form" action="跳转的页面" method="post" onsubmit="return check()">
<input type="text" id="name"/>
<input type="sumit" value="提交"/>
</form>
温馨提示:内容为网友见解,仅供参考
第1个回答  2011-05-12
不能用submit,只能用button,定义一个button的onclick事件
写一个javascript,在js中验证和实现跳转就可以了,
例如:<input type="button" value="ss" onclick="haha()">
function haha(){
window.location="index.html";
}
第2个回答  2011-05-12
<form name="form" action="test.html" method="post" onsubmit="return check()">
<input type="text" id="name"/>
<input type="sumit" value="提交"/>
</form>

function check(){
var name = document.getElementById("name").value;
if(name == null || name == ''){
alert("不能为空");
return false;
}
return true;
}
相似回答