checkbox的indeterminate属性

2017-02-10  本文已影响117人  小前seant

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



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

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

在IE8表现如下:


上一篇下一篇

猜你喜欢

热点阅读