今天在使用QQ邮箱时,突然发现会出现像下面这样的checkbox样式
几经周折查阅,原来checkbox不仅有checked、unchecked,还具有中间量:indeterminate。具体可实施即:
function $(name) {
return document.getElementById(name);
}
window.onload = function() {
$('test').indeterminate = true;
}
在IE8表现如下:
网友评论