好吧,我的问题非常简单直接。下拉列表的 html 很简单,这里是我发现使用的脚本和 html
<select id='combo'>
<option>Yes</option>
<option>No</option>
<option>other</option>
</select>
<input id='text1' style='display: none'/>
<input id='text2' style='display: none'/>
<script>
document.getElementById('combo').onchange = function() {
var display = this.selectedIndex == 2 ? "inline" : "none";
document.getElementById('text1').style.display = display;
document.getElementById('text2').style.display = display;
}
</script>
我该如何应用这个?如果当然,这甚至可以工作......
谢谢