'paginate_button先前禁用的'引导程序,在ie11中不起作用

时间:2018-10-11 09:09:30

标签: bootstrap-4

我正在使用以下引导程序类禁用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的问题。

谢谢 拉胡尔

0 个答案:

没有答案