我的一位客户不希望其他网站复制粘贴具体textArea的内容。 目前我有一个inputTextArea作为readonly =“true”,但我仍然需要禁用副本&粘贴功能。 有什么想法吗?
答案 0 :(得分:9)
让您的JSF代码生成以下HTML,请注意oncopy
& onpaste
<textarea oncopy="return false;" onpaste="return false;">
或附上要禁用其副本的组件。粘贴在以下div
<div oncopy="return false;" onpaste="return false;">
<!-------Your component should go here ---->
</div>