在aspx中我的checkbox如何操作js代码?
我现在有一个控件<asp:CheckBox ID="Box1" runat="server" Text="查看" />
和一个html的select
<select id="Sele_Box1" style="width: 50px;" class="inputborder">
<option>本人</option>
<option>本部</option>
<option>跨部</option>
</select>
我想当选中了CheckBox 时,Sele_Box1可用,没有选中时候不可用,请问,在Checkbox里如何写代码js呢?
如果是html的checkbox有onclick属性,那么我会,可现在是aspx的checkbox,没有这个属性
请高手帮忙!!! --------------------编程问答-------------------- 那你就用input啊 --------------------编程问答-------------------- Box1.Attributes.Add("onclick", "javascript:document.getElementById('Sele_Box1').disabled= (this.checked ? '' : 'disabled')"); --------------------编程问答-------------------- 有一个OnClientClick属性,就是调用javascript脚本的 --------------------编程问答-------------------- Box1.Attributes.Add("onclick", "document.getElementById('Sele_Box1').disabled= (this.checked ? '' : 'disabled')"); --------------------编程问答--------------------
<asp:CheckBox ID="Box1" runat="server" Text="查看" />--------------------编程问答--------------------
onclick="JavaScript:if(this.checked == true) document.getElementById('Sele_Box1').disabled=false; else document.getElementById('Sele_Box1').disabled=true;"
补充:.NET技术 , ASP.NET