How to stop user from printing webpages? using javascript or jquery

后端 未结 9 686
谎友^
谎友^ 2020-12-03 12:34

How can we stop users to print webpage using different methods?

  1. Disabling Right Click
  2. Disabling CtrlP combination of keys
  3. <
9条回答
  •  天命终不由人
    2020-12-03 13:12

    Add such block to your CSS

    @media print {
      body {
        display: none;
      }
    }
    

    This should hide all content when printing.

提交回复
热议问题