如何在禁用的单选按钮/复选框上更改丑陋的光标图像

How to change the ugly cursor image on disabled radio buttons / checkboxes

我想删除在大多数浏览器(Chrome、Internet Explorer 等)中出现的悬停在禁用控件上的丑陋红色图像

如果 CSS3 是一个选项,只需使用 :disabled 选择器并将光标设置为其他内容:

input[type='radio']:disabled {
    cursor: default;
}

input[type='checkbox']:disabled {
    cursor: default;
}

就用这个

CSS

对于处于禁用状态的radio按钮

input[type='radio']:disabled {
    cursor: default;
}

对于checkbox处于禁用状态

input[type='checkbox']:disabled {
    cursor: default;
}
/* goodby the ugly cursor image on disabled inputs */
input:disabled {
    cursor: default !important;
}