刚入此道,麻烦给写详细点,在下先谢过了!
3 个解决方案
#1
onclick 事件里,设置下拉框disable=true
#2
大虾写详细点吧
#3
<select name="select1" id="select1">
<option>我是下拉菜单</option>
</select><br />
<input name="abc" type="radio" value="0" checked="checked" onclick="document.getElementById('select1').disabled='';"/>
下拉菜单可用<br />
<input type="radio" name="abc" value="1" onclick="document.getElementById('select1').disabled=true;"/>
下拉菜单不可用
<option>我是下拉菜单</option>
</select><br />
<input name="abc" type="radio" value="0" checked="checked" onclick="document.getElementById('select1').disabled='';"/>
下拉菜单可用<br />
<input type="radio" name="abc" value="1" onclick="document.getElementById('select1').disabled=true;"/>
下拉菜单不可用
#1
onclick 事件里,设置下拉框disable=true
#2
大虾写详细点吧
#3
<select name="select1" id="select1">
<option>我是下拉菜单</option>
</select><br />
<input name="abc" type="radio" value="0" checked="checked" onclick="document.getElementById('select1').disabled='';"/>
下拉菜单可用<br />
<input type="radio" name="abc" value="1" onclick="document.getElementById('select1').disabled=true;"/>
下拉菜单不可用
<option>我是下拉菜单</option>
</select><br />
<input name="abc" type="radio" value="0" checked="checked" onclick="document.getElementById('select1').disabled='';"/>
下拉菜单可用<br />
<input type="radio" name="abc" value="1" onclick="document.getElementById('select1').disabled=true;"/>
下拉菜单不可用