我想添加在 asp.net 的下拉列表中更改所选索引时要触发的 Javascript 代码。
所以,这是我的 DDL:
<asp:DropDownList ID="comboReportTypes" runat="server" />
我想在上面的 DDL 中添加这样的内容: onSelectionIndexChanged="MyJavascriptFuntion(this)"
所以我想结束这样的事情:
<asp:DropDownList ID="comboReportTypes" runat="server" onSelectionIndexChanged="MyJavascriptFuntion(this)" />
这可能吗?
提前致谢。我正在使用 ASP.Net 4.0