當一個具有contextmenu屬性的元素的contextmenu事件觸發(fā)或冒泡到該元素時,show事件會被觸發(fā)。
當 <menu> 元素在上下文菜單顯示時執(zhí)行 JavaScript:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鳥教程(cainiaoplus.com)</title> </head> <body> <div contextmenu="test"></div> <menu type="context" id="test"> <menuitem label="alert" onclick="alert('the alert label has been clicked')" /> </menu> <script> document.getElementById("test").addEventListener("show", function(e){ alert("the context menu will be displayed"); }, false); </script> </body> </html>測試看看 ?/?
當<menu>元素顯示為上下文菜單時,將激活onshow屬性。
IEFirefoxOperaChromeSafari
目前只有瀏覽器firefox支持 onshow事件屬性。
onshow事件屬性是HTML5中的新增功能。
<element onshow="script">
值 | 描述 |
---|---|
script | 腳本在 onshow 中執(zhí)行 |
支持的 HTML 標簽: | <menu> |
---|
HTML DOM 參考手冊: onshow 事件