禁用复制粘贴功能啊:inputTextarea标签JSF(2.0)

sfr*_*frj 1 java jsf java-ee java-ee-6 jsf-2

我的一个客户不希望其他网站复制粘贴具体textArea的内容.目前我有一个inputTextArea为readonly ="true",但我仍然需要禁用复制和粘贴功能.有任何想法吗?

Jig*_*shi 10

使您的JSF代码生成以下HTML,注意oncopy&onpaste

<textarea oncopy="return false;" onpaste="return false;">
Run Code Online (Sandbox Code Playgroud)

或者在下面包含要禁用复制和粘贴的组件 div

<div oncopy="return false;" onpaste="return false;">
    <!-------Your component should go here ----> 
</div>
Run Code Online (Sandbox Code Playgroud)