แอตทริบิวต์เหตุการณ์ HTML oncontextmenu ถูกทริกเกอร์เมื่อผู้ใช้คลิกขวาที่องค์ประกอบ HTML เพื่อเปิดเมนูบริบทในเอกสาร HTML
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
<tagname oncontextmenu=”script”></tagname>
ตัวอย่าง
ให้เราดูตัวอย่างของ HTML oncontextmenu แอตทริบิวต์เหตุการณ์ -
<!DOCTYPE html> <html> <head> <style> body { color: #000; height: 100vh; background-color: #FBAB7E; background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%); text-align: center; padding: 20px; } .box { background: #db133a; width: 140px; height: 140px; margin: 1rem auto; color: #fff; } </style> </head> <body> <h1>HTML oncontextmenu Event Attribute Demo</h1> <p oncontextmenu="get()" class="box"></p> <p>Now try to right click on above red box to open context menu.</p> <script> function get() { document.body.style.background = "#084C61"; document.body.style.color = '#fff'; } </script> </body> </html>
ผลลัพธ์
ตอนนี้ให้ลองคลิกขวาที่กล่องสีแดงเพื่อดูว่าแอตทริบิวต์เหตุการณ์ oncontextmenu ทำงานอย่างไร