收藏
回答

请问如何更改button disabled的样式

wxml 文件:

<button class="btn-list" catchtap="answerNext" disabled="">下一题</button>

wxss 文件:

button:disabled {
color:#e3e3e3 !important;
border:1px solid #e3e3e3 !important;
}


js 文件:

data:{
 disabled:true
}

我想改button 在disable=“true”时按钮的边框和字体颜色,但是页面没有奏效,教程中也没有说明,请问如何更改?

回答关注问题邀请回答
收藏

2 个回答

  • null💣
    null💣
    2018-05-12

    button[disabled]{

    color:#e3e3e3 !important;
    border:1px solid #e3e3e3 !important;

    }

    2018-05-12
    有用 1
    回复
  • 2018-05-12


    加了button[disabled]{color:#e3e3e3!importantborder :1px solid #e3e3e3 !important;}报错了,界面样式也没有了

    2018-05-12
    有用
    回复
登录 后发表内容