當
當 <menu> 元素以上下文選單形式在 HTML 中顯示時,觸發 onshow 事件。
示例
您可以嘗試執行以下程式碼,在 <menu> 元素以上下文選單形式顯示時執行指令碼 −
<!Doctype html> <html> <head> <title>HTML menu</title> </head> <body> <div style = "border:1px solid #000; padding:20px;" contextmenu = "clickmenu"> <p>Right click inside here....</p> <menu type = "context" id = "clickmenu" onshow="display()"> <menuitem label = "Tutorialspoint" onclick = ""></menuitem> <menuitem label = "Tutorials Library" onclick = ""></menuitem> <menuitem label = "Coding Ground" onclick = ""></menuitem> <menuitem label = "Q/A" onclick = ""></menuitem> </menu> </div> <script> function display() { alert("The context menu will be visible now."); } </script> </body> </html>
廣告