How to disable right click on IFRAME

前端 未结 6 2202
花落未央
花落未央 2020-12-11 18:14

I have a document content displayed on IFrame in MVC web application. The content should not be copied and printed . I tried to disable right click using two functions style

6条回答
  •  再見小時候
    2020-12-11 18:23

    In order to disable the right click menu you could use the following snippet:

    document.oncontextmenu = function() { 
        return false; 
    };
    

    I made a JSFiddle that displays the effect.

提交回复
热议问题