我在 GridiView 中有一个 ASP.NET GridView 控件和 DropDownList 控件,如下所示:
<asp:GridView ID="GridView1" runat="server">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:DropDownList ID="DropDownList1" runat="server">
</asp:DropDownList>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
我想使用 jQuery/JavaScript 来获取 DropDownList 元素并检测项目更改,如下所示:
$(function() {
$("#<%= DropDownList1.ClientID %>").change(function() {
if ($("#<%= DropDownList1.ClientID %>").find('option:selected').text() == "1") {
alert('1');
} else {
alert('2');
}
});
});
我的问题是,如何在 GridView 中选择 DropDownList,然后检查更改?
请指教。提前谢谢你。