Input Checkbox indeterminate 属性
定义和用法
indeterminate 属性设置或返回复选框的状态是否已更改。
复选框实际上具有三种状态: true, false 和 indeterminate ,这表明复选框既不是"打开"状态,也不是"打开"状态。 或"关闭"。
不能通过 HTML 属性将复选框设置为不确定状态 - 它必须由 JavaScript 设置。
此状态可用于强制用户选中或取消选中复选框。
浏览器支持
属性 | |||||
---|---|---|---|---|---|
indeterminate | Yes | Yes | Yes | Yes | Yes |
语法
返回 indeterminate 属性:
checkboxObject.indeterminate
设置 indeterminate 属性:
checkboxObject.indeterminate = true|false
属性值
值 | 描述 |
---|---|
true|false | 指定复选框的状态 可能的值:
|
技术细节
返回值: | 一个布尔值,如果复选框处于不确定状态则返回true,否则返回false |
---|
❮ Input Checkbox 对象