xul menubutton上的mouseover事件

时间:2011-09-06 04:48:29

标签: css firefox-addon xul onmouseover

我想在菜单按钮的事件上更改鼠标按钮的显示。 它显示鼠标上的按钮边框,菜单按钮的事件以及按钮和下拉菜单的分离。

<toolbarbutton id="search" type="menu-button" label="SEARCH" width="83" height="25" oncommand="webSearch();event.stopPropagation();" onmouseover="">
   <menupopup>
      <menuitem label="Web" value="webs" oncommand="webSearch();event.stopPropagation();"/>
      <menuitem label="Images" value="images" oncommand="imageSearch();event.stopPropagation();"/>
   </menupopup>
</toolbarbutton>

1 个答案:

答案 0 :(得分:0)

你想要它做什么?当你将鼠标悬停在它上面时,你可以添加一些CSS来改变它的样式吗?

#search:hover {
   /* your styles here */
}