JS代码,二级选择问题,联动选择问题
比如一级有:A,B,其它三个选项,当选择其它时,右边出现文本框,可以自己填写。文本框的id,name是ming。感谢各路高手。...
比如一级有:A,B,其它三个选项,当选择其它时,右边出现文本框,可以自己填写。文本框的id,name是ming。感谢各路高手。
展开
2个回答
展开全部
<select onchange="other()" id="select">
<option value="0">A</option>
<option value="1">B</option>
<option value="2">其他</option>
</select>
<input type="text" id="ming" name="ming" style="display:none" />
<script type="text/javascript">
function other(){
if(document.getElementById('select').value!=2){
document.getElementById('ming').style.display='none';
return;
}else{
document.getElementById('ming').style.display='inline-block';
}
}
</script>
更多追问追答
追问
可以再帮我一下吗?
汉
其它
追答
document.getElementById('select').value!=2
改为document.getElementById('select').value!=‘其它’;
其他选项的value值是什么就改成什么
为select标签添加一个id=select
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |