extjs 为什么按钮字母不改变颜色?

ff29svar  于 2022-11-05  发布在  其他
关注(0)|答案(1)|浏览(169)
new Ext.Button({
    text: 'testing'
    ,style: {
       'background-color': 'blue',
       'color': 'red',
       'margin-right' : '15px'
   }
    ,handler : function() {
        window.open("https://www.google.es");
    }
})

我在样式中加入了“颜色”:“红色”,但字母仍然是黑色的,没有变色。有人知道为什么吗?

waxmsbnn

waxmsbnn1#

如果有人需要...这就是我的解决方案:

new Ext.Button({
    text: '<div style="color: white">testing</div>'
    ,style: {
       'background-color': '#0099ff',
       'border-radius': '5px',
       'padding-left': '5px',
       'padding-right': '5px',
       'padding-top': '1px',
       'padding-bottom': '1px'
   }
    ,handler : function() {
        window.open("https://www.google.es");
    }
})

相关问题