how to disable “save as” and “print” option of browser

半腔热情 提交于 2019-12-21 22:11:51

问题


Can any one tell me how to disable "save as" and "print" option of browser menu bar? if I go through File->Save As or Print, the document gets printed and saved.

I want to prevent this.

Can any one help me out in this issue?

Thanks in advance


回答1:


<style type="text/css">
@media print{
body {display:none;}
}
</style>

The above code can be used to disable the user from printing the webpage.I have tested this code, its working fine for me in IE8, Chrome and Firefox.



来源:https://stackoverflow.com/questions/7022310/how-to-disable-save-as-and-print-option-of-browser

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!