#32006/3/4 20:56:40
我用VBS做了一个,你看看是你想要的吗?
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<script language="vbscript">
sub checkChange()
if aaa.options(aaa.selectedIndex).value = 0 then
bbb.style.visibility = "visible"
else
bbb.style.visibility = "hidden"
end if
end sub
</script>
</head>
<body>
<select name="aaa" onChange="checkChange()">
<option value="2">大学</option>
<option value="1">中学</option>
<option value="0">其他</option>
</select>
<input type="text" name="bbb" style="visibility:hidden">
</body>
</html>
把代码复制到一个新的.asp或html文件中,就可以看到效果,到服务器端接收时根据aaa的值来确定使用aaa的值还是使用bbb的值。
闭起眼睛看人生