两个文本框,一个按钮,js怎样判断,点击按钮时,两个文本框都为空,则提示必填一个,两个都有内容?
则变量test等于A,如果第一个文本框有内容,第二个没有,则变量test等于B,如文本框第一个空,第二个有内容,则变量test等于C。...
则变量test等于A,如果第一个文本框有内容,第二个没有,则变量test等于B,如文本框第一个空,第二个有内容,则变量test等于C。
展开
2个回答
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" language="javascript">
function tt(){
var inputOne = document.getElementById("inputA").value;
var inputTwo = document.getElementById("inputB").value;
var show;
if(inputOne == "" && inputTwo == ""){
alert("两个文本框必填一个!");
}else{
if(inputOne != "" && inputTwo != ""){
show = "A";
}else if(inputOne != "" && inputTwo == ""){
show = "B";
}else if(inputOne == "" && inputTwo != ""){
show = "C";
}
alert("test="+show);
}
}
</script>
<title>我的第一个网页</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<table width="272" border="1">
<tr>
<td width="77">输入框A:</td>
<td width="179"><input type="text" name="inputA" id="inputA" /></td>
</tr>
<tr>
<td>输入框B:</td>
<td><input type="text" name="inputB" id="inputB" /></td>
</tr>
<tr>
<td colspan="2" align="center" valign="middle"><input type="button" name="button" id="button" value="按钮" onclick="tt()"/></td>
</tr>
</table>
</form>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" language="javascript">
function tt(){
var inputOne = document.getElementById("inputA").value;
var inputTwo = document.getElementById("inputB").value;
var show;
if(inputOne == "" && inputTwo == ""){
alert("两个文本框必填一个!");
}else{
if(inputOne != "" && inputTwo != ""){
show = "A";
}else if(inputOne != "" && inputTwo == ""){
show = "B";
}else if(inputOne == "" && inputTwo != ""){
show = "C";
}
alert("test="+show);
}
}
</script>
<title>我的第一个网页</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<table width="272" border="1">
<tr>
<td width="77">输入框A:</td>
<td width="179"><input type="text" name="inputA" id="inputA" /></td>
</tr>
<tr>
<td>输入框B:</td>
<td><input type="text" name="inputB" id="inputB" /></td>
</tr>
<tr>
<td colspan="2" align="center" valign="middle"><input type="button" name="button" id="button" value="按钮" onclick="tt()"/></td>
</tr>
</table>
</form>
</body>
</html>
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询