我有dropdownlist的數量,所以我想改變每個dropdownlist在窗體中的事件,當我選擇特定的dropdownlist項目,然後它將觸發特定的dropdownlist事件... 這裏是兩個示例下拉列表的jQuery與asp.net dropdownlist
<asp:DropDownList ID="ddlGender" runat="server" AutoPostBack="True">
<asp:DropDownList ID="ddlMaritalStatus" runat="server" AutoPostBack="True">
請儘快 感謝喲幫我ü
我想這
$(document).ready(function() {
$('input:text').each(function() {
$(this).attr('disabled', true);
});
$("select").change(function() {
alert(this.value);
if (this.value != "User Select") {
alert(this.value);
$('input:text').each(function() {
$(this).attr('disabled', false);
});
}
if (this.value == "User Select") {
$('input:text').each(function() {
$(this).attr('disabled', true);
});
}
})
});
這裏最後一個條件不能正常工作,請幫助
給出@ user..your問題不是在全部清楚..解釋更多。 –
你試過了什麼?什麼不起作用?這與jQuery有什麼關係? (提示:這些設置爲'AutoPostBack =「True」'這將重新加載整個頁面,呈現任何JavaScript事件處理程序模擬。) – David