0
我想更改菜單按鈕上的鼠標上的按鈕顯示。 它在菜單按鈕的鼠標懸停事件上顯示了按鈕邊框,並且還顯示了按鈕和下拉菜單的分離。xul menubutton上的鼠標懸停事件
<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>
給一些代碼用於更好地理解 – sandeep
<的ToolBarButton ID = 「搜索」 型= 「菜單鍵」 標籤= 「SEARCH」 寬度= 「83」 HEIGHT = 「25」 按需=「網絡搜索();事件.stopPropagation();」 的onmouseover = 「」> <菜單項標籤= 「網絡」 值= 「腹板」 按需= 「網絡搜索(); event.stopPropagation();」/> <菜單項標籤= 「影像」 值= 「圖像」 oncommand =「imageSearch(); event.stopPropagation();」/> toolbarbutton> –
gargi
對不起,我的控制器不工作。那麼代碼是用來創建菜單按鈕的。我希望在鼠標懸停事件中,按鈕不能顯示邊框。即使我們使用css將圖像應用於它,鼠標上的邊框仍然可見 – gargi