我想阻止 html 页面中的复制功能。我已经看到了这个话题。
现在,我完成并完成它。
这是我用过的代码
<script type='text/javascript'>
document.ondragstart = function() { return false; };
</script>
<style type='text/css'>
body
{
-webkit-touch-callout: none;
-webkit-user-select: none; /* Webkit */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE 10 */
/* Currently not supported in Opera but will be soon */
-o-user-select: none;
user-select: none;
}
</style>
此代码可以禁用从所有元素复制内容并在 IE、Chrome 和 FF 中运行良好
但是,我的客户仍然想从任何输入文件中复制内容(类型=文本,文本区域)
那么1)如何使文本字段,textarea只能复制内容?和其他元素仍然禁用复制内容功能
谢谢你。
对不起,我的英语不好。