判断文本框是否为空
<html><head></head><bodystyle="background-color:teal;"><formname="form1"action="javas...
<html>
<head>
</head>
<body style="background-color: teal;">
<form name = "form1" action="javascript: method="post" >
<h3>请输入你信息</h3>
姓名
<input type="text" id="name"/></br>
班级
<input type="text" id="class"/></br>
专业
<input type="text" id="Professional"/></br>
<dr>
<input type="button" onclick="qq()" value="提交"/>
</dr>
<dr>
<input type="reset" value="重置" /></dr>
</tr>
</body>
</html>
姓名和班级不能为空这要什么写?
在线等·求大神 展开
<head>
</head>
<body style="background-color: teal;">
<form name = "form1" action="javascript: method="post" >
<h3>请输入你信息</h3>
姓名
<input type="text" id="name"/></br>
班级
<input type="text" id="class"/></br>
专业
<input type="text" id="Professional"/></br>
<dr>
<input type="button" onclick="qq()" value="提交"/>
</dr>
<dr>
<input type="reset" value="重置" /></dr>
</tr>
</body>
</html>
姓名和班级不能为空这要什么写?
在线等·求大神 展开
展开全部
你的代码真是错误百出,我给你全部修改了一下:
<html>
<head>
<script type="text/javascript">
function qq(){
if(document.getElementById("name").value==""){
alert("姓名不能为空");
return false;
}
if(document.getElementById("class").value==""){
alert("班级不能为空");
return false;
}
return true;
}
</script>
</head>
<body style="background-color: teal;">
<form name = "form1" action="javascript" method="post">
<h3>请输入你信息</h3>
姓名 <input type="text" id="name"/><br/>
班级 <input type="text" id="class"/></br/>
专业 <input type="text" id="Professional"/><br/>
<input type="submit" onclick="return qq()" value="提交"/>
<input type="reset" value="重置" />
</body>
</html>
<html>
<head>
<script type="text/javascript">
function qq(){
if(document.getElementById("name").value==""){
alert("姓名不能为空");
return false;
}
if(document.getElementById("class").value==""){
alert("班级不能为空");
return false;
}
return true;
}
</script>
</head>
<body style="background-color: teal;">
<form name = "form1" action="javascript" method="post">
<h3>请输入你信息</h3>
姓名 <input type="text" id="name"/><br/>
班级 <input type="text" id="class"/></br/>
专业 <input type="text" id="Professional"/><br/>
<input type="submit" onclick="return qq()" value="提交"/>
<input type="reset" value="重置" />
</body>
</html>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-07-10
展开全部
<html>
<head>
<script language="javascript">
function qq()
{
if(document.getElementById("name").value==""||document.getElementById("class").value=="")
{
alert("姓名和班级不能为空");
}
}
</script>
</head>
<body style="background-color: teal;">
<form name = "form1" action="javascript: method="post" >
<h3>请输入你信息</h3>
姓名
<input type="text" id="name"/></br>
班级
<input type="text" id="class"/></br>
专业
<input type="text" id="Professional"/></br>
<dr>
<input type="button" onclick="qq()" value="提交"/>
</dr>
<dr>
<input type="reset" value="重置" /></dr>
</tr>
</body>
</html>
<head>
<script language="javascript">
function qq()
{
if(document.getElementById("name").value==""||document.getElementById("class").value=="")
{
alert("姓名和班级不能为空");
}
}
</script>
</head>
<body style="background-color: teal;">
<form name = "form1" action="javascript: method="post" >
<h3>请输入你信息</h3>
姓名
<input type="text" id="name"/></br>
班级
<input type="text" id="class"/></br>
专业
<input type="text" id="Professional"/></br>
<dr>
<input type="button" onclick="qq()" value="提交"/>
</dr>
<dr>
<input type="reset" value="重置" /></dr>
</tr>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询