我试图用 jquery 取消选中 jquerymobile 复选框。当一个人点击一个按钮时,我试图取消选中它。
这是我复选框:
<input id='_inputcb_Q801' name='_inputcb_Q801' type='checkbox'>
<label id='_inputcb_Q801L' for='_inputcb_Q801'>Text</label>
我已经尝试过这些选项。
function uncheckCB(){
$('#_inputcb_Q801').prop('checked',false).checkboxradio('refresh');
$('#_inputcb_q801').not(:checked);
$('input[type=\"checkbox\"]:first').attr('checked', false).checkboxradio('refresh');
$('input[name=_inputcb_Q801]').attr('checked',false);
$('input[name=_inputcb_Q801]').prop('checked', false);
}
该功能是一个按钮的点击。
以上选项均无效。任何人都知道另一种取消选中 jquerymobile 复选框的方法。
提前致谢