Is right click a Javascript event?

后端 未结 18 2319
南笙
南笙 2020-11-22 10:02

Is right click a Javascript event? If so, how do I use it?

18条回答
  •  [愿得一人]
    2020-11-22 10:26

    You could use the event window.oncontextmenu, for example:

    window.oncontextmenu = function () {
      alert('Right Click')
    }

    Please Right Click here!

提交回复
热议问题