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

后端 未结 19 1524
广开言路
广开言路 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:14

    Tested and works in Opera 12.17, firefox 30, Internet Explorer 9 and chrome 26.0.1410.64

    document.oncontextmenu =function( evt ){
            alert("OK?");
            return false;
            }
    

提交回复
热议问题