如何在html中禁止文字的復制?
可以禁止用戶右鍵,使用js操作禁止,參考以下代碼<script type="text/javascript">document.oncontextmenu=function(e){return false;}</script> <body onselectstart="return false">也可以直接禁止用戶選中頁面從而實現禁止復制的目的,可以在css里面操作禁止,參考以下代碼body { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }以上兩種方法都可實現禁止用戶復制。