我使用xul在firefox中添加了工具栏按钮,现在我想在javascript中更改该工具栏按钮的背景颜色。有人请帮忙
我的xul按钮代码是:
<toolbox id="navigator-toolbox">
<toolbar id="TutTB-Toolbar" toolbarname="Tutorial Toolbar" accesskey="T"
class="chromeclass-toolbar" context="toolbar-context-menu"
hidden="false" persist="hidden">
<toolbaritem flex="0">
<toolbarbutton id="TutTB-Web-Button" tooltiptext="Search"
label="button" oncommand="alert('ok');" />
</toolbaritem>
<toolbarspring />
</toolbar>
</toolbox>
我尝试通过以下代码行在javascript中访问它
var p = document.getElementById("TutTB-Web-Button");
alert(p.textContent);
document.getElementById("TutTB-Web-Button").style.backgroundColor='red';
答案 0 :(得分:0)
最有可能与xul元素的默认外观有关。你必须-moz-appearance:none
试试这样:
在你的CSS中:
.myRedClass{
-moz-appearance: none;
background-color:red;
}
在你的JS中:
document.getElementById("TutTB-Web-Button").classList.add('myRedClass');
结果: