摘要:ASP.NET WebForm:透過jQuery取得DropDownList的值
在ASP.NET WebForm裡煩惱如何用javascript取得ASP.NET控制項,就用jQuery吧!
(參考自stackoverflow)
首先要外掛jQuery如jquery-1.7.1.js或jquery-1.7.1.min.js。
ASP.NET前置程式碼如下:
$("input[id$=BtnDownLoad]").live("click", function () {
var startYear = $('#<%=DropDownListStartYear.ClientID %> option:selected').val();
}
ASP.NET 控制項:
<asp:DropDownList ID="DropDownListStartYear" runat="server"></asp:DropDownList>