html select 事件问题
发布网友
发布时间:2022-04-24 12:54
我来回答
共4个回答
热心网友
时间:2022-04-24 14:24
<select name="select" onchange="t(this)">
<option>北京</option>
<option>天津</option>
<option>上海</option>
<option value="other">其他</option>
</select>
<input id="a"/>
function t(obj)
{
if(obj.value=="other")
{
document.getElementById("a").style.display = ""
}
else
document.getElementById("a").style.display = "none"
}
热心网友
时间:2022-04-24 15:42
顶一楼
热心网友
时间:2022-04-24 17:16
顶楼上