美文网首页
checkbox的indeterminate属性

checkbox的indeterminate属性

作者: 小前seant | 来源:发表于2017-02-10 14:43 被阅读117次

今天在使用QQ邮箱时,突然发现会出现像下面这样的checkbox样式



几经周折查阅,原来checkbox不仅有checked、unchecked,还具有中间量:indeterminate。具体可实施即:

function $(name) {
        return document.getElementById(name);
}
window.onload = function() {
        $('test').indeterminate  = true;
}

在IE8表现如下:


相关文章

网友评论

      本文标题:checkbox的indeterminate属性

      本文链接:https://www.haomeiwen.com/subject/mebgittx.html