0
我在我的MVC頁面上有兩個單選按鈕。當我點擊「是」按鈕時,它會啓用文本框,但是當我點擊「否」時,它不會禁用文本框。可能是什麼問題呢?單選按鈕單擊不起作用
$('#rdoDate').click(function() {
debugger;
switch ($(this).val()) {
case 'N':
$("#txtDate").attr("disabled", true);
break;
case 'Y':
$("#txtDate").removeAttr("disabled");
break;
}
});
<%=Html.RadioButton("rdoDate","Y")%><label>Yes</label>
<%=Html.RadioButton("rdoDate", "N", true)%><label>No</label>
<%: Html.TextBoxFor(model => model.txtDate, new { id = "txtDate", disabled = true })%>
感謝。有效。 – nav100 2010-12-21 16:35:14