我有一个下拉列表控件,它填充了数据库中的人名列表。如果用户在列表中选择一个人,我想启用 CheckBox 控件,如果他们选择 BLANK(也是列表中的一个选项),我想禁用复选框。
这是我的代码的一部分...
<tr>
<td> <asp:Label ID="lblAssignedTo1" runat="server" Text="Assigned To:"></asp:Label></td>
<td><asp:DropDownList ID="ddlAssignedTo1" runat="server" AppendDataBoundItems="True" DataSourceID="dsAssignedTo" DataTextField="StaffName" DataValueField="StaffID"><asp:ListItem Text="" /></asp:DropDownList></td>
</tr>
<tr>
<td> <asp:Label ID="LabelEmail1" runat="server" Text="Send Email:"></asp:Label>
</td>
<td><asp:CheckBox ID="cbEmail1" runat="server" Checked="true" /></td>
</tr>
该复选框是向从列表中选择的人发送电子邮件的触发器。如果从列表中选择了一个人,我希望它默认复选框为“启用”,以确保我正在使用的程序稍后会发送电子邮件。
我查看了http://api.jquery.com/change/的一个例子,但它没有使用复选框控件,所以不确定它是否可以工作。对不起,我是 jScript 的新手。
提前致谢