【求助】如何验证用Javascript验证表单用户名非空啊???我调不出来
<FORMmethod="POST"action="respond.asp"><divalign="center">用户名:<inputtype="text"name="...
<FORM method="POST" action="respond.asp" >
<div align="center">用户名:<input type="text" name="name" size="20" ><BR>
密 码:<input type="password"name="password"seze="20"><BR>
<input type="submit" value="提交" name="B1">
<input type="reset" value="重置" name="B2">
</center></div></FORM>
如何用Javascript验证表单用户名非空啊?? 展开
<div align="center">用户名:<input type="text" name="name" size="20" ><BR>
密 码:<input type="password"name="password"seze="20"><BR>
<input type="submit" value="提交" name="B1">
<input type="reset" value="重置" name="B2">
</center></div></FORM>
如何用Javascript验证表单用户名非空啊?? 展开
4个回答
展开全部
(1)增加单击事件
(2)写个函数判断是否提交
......
function submituser()
{
if (document.getElementById("name").value = '') then
alert("为空");
else
document.getElementById("formuser").submit();
}
......
<FORM method="POST" action="respond.asp" name="formuser" >
<input type="text" name="name" size="20" >
<input type="submit" value="提交" onclick="submituser()">
......
(2)写个函数判断是否提交
......
function submituser()
{
if (document.getElementById("name").value = '') then
alert("为空");
else
document.getElementById("formuser").submit();
}
......
<FORM method="POST" action="respond.asp" name="formuser" >
<input type="text" name="name" size="20" >
<input type="submit" value="提交" onclick="submituser()">
......
展开全部
<script>
function checkInfo(f){
if(f.name.value==''){
alert('请输入用户名');
f.name.focus();
return false;
}
return true;
}
</script>
<form action='test.asp' method='post' onsubmit='return checkInfo(this);'>
姓名:<input type='text' name='name'/>
<br/>
<input type='reset' value='重置'/>
<input type='submit' value='注册'/>
</form>
function checkInfo(f){
if(f.name.value==''){
alert('请输入用户名');
f.name.focus();
return false;
}
return true;
}
</script>
<form action='test.asp' method='post' onsubmit='return checkInfo(this);'>
姓名:<input type='text' name='name'/>
<br/>
<input type='reset' value='重置'/>
<input type='submit' value='注册'/>
</form>
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
代码楼上已经写的很清楚了,稍微研究一下js,很好学的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个不应该在这里问的,早都有人问过的问题,网上一大堆,你说呢?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询