尝试使用Jquery检查按钮点击事件的复选框,但它无法正常工作。我的代码缺少什么?这是我的HTML:
<input name="OldForm" id="OldForm" type="checkbox" value="1" <% if (ba.OLD_FORM.HasValue && ba.OLD_FORM.Value) Response.Write (" checked "); %> />
<input name="hdnOldForm" id="hdnOldForm" type="hidden" value="<% if (ba.OLD_FORM.HasValue && ba.OLD_FORM.Value) Response.Write ("1"); %>" />
这是我的javascript:
function testCheckbox() {
$("#ButtonAdd").click (function(){
$("#Oldform").prop("checked", true);
});
}
testCheckbox();
答案 0 :(得分:0)
您的jQuery表达式中的标识符拼写错误。
$("#Oldform").prop("checked", true);
需要
$("#OldForm").prop("checked", true);