How to make a checkbox checked with jQuery?
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
How do I check a checkbox with JQuery or Javascript?
我正试图用jquery选中(或不选中)复选框。
我的示例HTML:
1 | <input type="checkbox" id="test" name="test" /> |
尝试清除复选框(不起作用)
1 | $('#test').val('off'); |
检查时:
1 | $('#test').val('on'); |
如何使用jquery控制复选框?
1 | $('#test').prop('checked', true); |
注意只有在jquery 1.6 + P / < >
1 2 3 | $('#test').attr('checked','checked'); $('#test').removeAttr('checked'); |
1 | $('#checkbox').prop('checked', true); |
当你想让它unchecked: P / < >
1 | $('#checkbox').prop('checked', false); |
我想你应该使用道具(),如果你是用jquery 1.6 onwards。 P / < >
检查到它你应该做的: P / < >
1 | $('#test').prop('checked', true); |
到uncheck它: P / < >
1 | $('#test').prop('checked', false); |
从jquery v1.6 使用道具 P / < >
到止,checkd或不 P / < >
1 | $('input:radio').prop('checked') // will return true or false |
和使它的使用checkd P / < >
1 | $("input").prop("checked", true); |
你不需要去控制你的checkboxes与jquery。你可以做它与一些简单的javascript。 P / < >
这js片断应该统一工作: P / < >
document.theformhere.test.value =真实; P / < >