怎么样根据下拉框的值 判断是否现实文本框
发布网友
发布时间:2022-04-23 19:52
我来回答
共2个回答
热心网友
时间:2022-04-25 16:06
<!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=gb2312" />
<title>无标题文档</title>
<script>
function showtxt()
{
if(document.getElementById("select").value==2)
{
document.getElementById("textfield").style.display="block";
}
else{document.getElementById("textfield").style.display="none";}
}
</script>
</head>
<body>
<form action="" method="post" id="form1">
<select name="select" onchange="showtxt()">
<option value="1">张三</option>
<option value="2">李四</option>
</select>
<input type="text" name="textfield" style="display:none;"/>
</form>
</body>
</html>
直接将以上代码保存为html代码运行即可。
热心网友
时间:2022-04-25 17:24
<form name="Myform">
<select name="oSelect">
<option value="张三">张三</option>
<option value="李四">李四</option>
<option value="王五">王五</option>
</select>
</form>
<div id="dis"style='display:none'>it's ok</div>
<script language="javascript">
//判断是否选中
document.Myform.oSelect.onchange=function(){
if(document.Myform.oSelect.options[1].selected)
document.getElementById("dis").style.display="block"
else
document.getElementById("dis").style.display="none"
}
</script>