如何在html中禁止文字的复制

如何在html中禁止文字的复制,第1张

可以禁止用户右键,使用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  

}

以上两种方法都可实现禁止用户复制。

需要准备的材料分别有:电脑、浏览器、html编辑器。

1、首先,打开html编辑器,新建html文件,例如:index.html,输入问题基础代码。

2、在index.html中的<body>标签中,输入样式代码:

onmousemove=HideMenu() oncontextmenu="return false" ondragstart="return false" onselectstart ="return false" onselect="document.selection.empty()"

oncopy="document.selection.empty()" onbeforecopy="return false" onmouseup="document.selection.empty()"

3、浏览器运行index.html页面,此时内容无法右键和选中以复制。

你可以用div实现 通过contenteditable属性使其可以编辑 将输入内容存入变量 keydown时获取输入值 然后存入变量 并将键入值替换为星号 给oncopy事件绑定一个函数 如果div 为focus时 把 oncopy 把 clipboardData 的值更改为 变量值 然后 return false

你可以按照这个思路试试


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7247884.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-03
下一篇 2023-04-03

发表评论

登录后才能评论

评论列表(0条)

保存