编辑和删除按钮禁用在IE9中不起作用,但它在IE 11中有效 我已经将类禁用按钮应用于编辑和删除按钮..它适用于所有浏览器,但它在IE9中不起作用...
.disablebutton {
cursor: default;
pointer-events: none;
color:gray !important;
}
答案 0 :(得分:0)
IE9不支持css指针事件属性
List of browsers that do have support of pointer-events
您可以使用disabled
属性,然后在选择器中使用它进行样式设置
<button disabled>I'm disabled</button>
CSS
button[disabled] {
cursor: default;
color: gray;
}
答案 1 :(得分:0)
Pointer-events
在IE9中不起作用。请检查此http://caniuse.com/#search=pointer-events。
尝试在JavaScript端检查类,然后禁用该功能。
我一直使用caniuse.com检查浏览器兼容性。