I have a group of check boxes all with a class 'types'. I have a button on the page that should select and unselect all checkboxes in the group
我有一组复选框都带有类'类型'。我在页面上有一个按钮,应该选择和取消选中组中的所有复选框
Checking the boxes works like this:
选中框的方式如下:
$('.types').attr('checked', 'true');
Unchecking the boxes like this doesn't work:
取消选中这样的框不起作用:
$('.types').attr('checked', 'false');
Unchecking the boxes like this throws an error:
取消选中这样的框会引发错误:
$('.types').attr('checked', false);
Error: Argument of type 'false' is not assignable to parameter of type '(index: number, attr: string) => string | number'
错误:类型'false'的参数不能分配给类型'的参数(索引:数字,attr:字符串)=>字符串|数'
Is there a way to work around this?
有办法解决这个问题吗?
2 个解决方案
#1
0
For newer versions of JQuery, you need to use this.
对于较新版本的JQuery,您需要使用它。
$('.checkbox').prop('checked', false);
#2
0
use it like this
像这样使用它
$('.types').prop('checked', false);
#1
0
For newer versions of JQuery, you need to use this.
对于较新版本的JQuery,您需要使用它。
$('.checkbox').prop('checked', false);
#2
0
use it like this
像这样使用它
$('.types').prop('checked', false);