jsp为什么from表单验证用户名是否为空失败 70
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN"><html><scripttype="text/java...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<script type="text/javascript">
function check
(mingcheng,mima)
{
if(mingcheng.value == null||mingcheng.value=="")
{
alert("用户名不能为空!");
return false;
}
if(mima.value == null||mima.value=="")
{
alert("密码不能为空!"); return false;
}
}
</script>
----------------------------------------------
<td height="600" align="left" valign="top" class="font-1">
<form onsubmit = "return check(mingcheng,mima)" name="form1" method="post" action="admin/addchanpinok.jsp">
<table width="100%" border="0" cellspacing="0" cellpadding="0"> 展开
<html>
<script type="text/javascript">
function check
(mingcheng,mima)
{
if(mingcheng.value == null||mingcheng.value=="")
{
alert("用户名不能为空!");
return false;
}
if(mima.value == null||mima.value=="")
{
alert("密码不能为空!"); return false;
}
}
</script>
----------------------------------------------
<td height="600" align="left" valign="top" class="font-1">
<form onsubmit = "return check(mingcheng,mima)" name="form1" method="post" action="admin/addchanpinok.jsp">
<table width="100%" border="0" cellspacing="0" cellpadding="0"> 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏70(财富值+成长值)
1个回答
展开全部
"return check(mingcheng,mima)"这里面的mingcheng,mima是什么鬼?从哪里得到的?
form表单控件的值可以通过document.getElementById("XX").value得到。
这样试试:
function check(){
var ming=document.getElementById("XX"); //xx是控件的id值
if(mingcheng.value == null||mingcheng.value==""){
//.....
}
}
form表单控件的值可以通过document.getElementById("XX").value得到。
这样试试:
function check(){
var ming=document.getElementById("XX"); //xx是控件的id值
if(mingcheng.value == null||mingcheng.value==""){
//.....
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询