How to add a custom right-click menu to a webpage?

后端 未结 19 1515
广开言路
广开言路 2020-11-22 15:54

I want to add a custom right-click menu to my web application. Can this be done without using any pre-built libraries? If so, how to display a simple custom right-click menu

19条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-22 16:25

    You could try simply blocking the context menu by adding the following to your body tag:

    
    

    This will block all access to the context menu (not just from the right mouse button but from the keyboard as well).

    P.S. you can add this to any tag you want to disable the context menu on

    for example:

    Will disable the context menu in that particular div only

提交回复
热议问题