我正在使用以下引导程序类禁用ui上的分页按钮-
void doingThis() {
doingThis = true;
request(data);
}
...
void doingThat() {
doingThis = false;
request(data);
}
...
public mySlot(int res) {
if (dointThis) {
...
} else {
...
}
}
以上代码在chrome中正常工作(按钮已禁用,并显示为浅灰色)。
但是在Internet Explorer 11中,按钮被禁用,但是按钮的颜色是蓝色而不是灰色(启用时为蓝色)。
请帮助。我无法识别引导CSS的问题。
谢谢 拉胡尔