Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有电子邮件和确认电子邮件 p:Inputtext,确认输入文本用户应该输入。应该防止粘贴(从浏览器编辑->粘贴),Ctrl+V,Shift+Insert 在 p:InputText 中。
请帮我完成这部分![防止粘贴][1]
使用这个 jQuery:
$(document).ready(function(){ $('#txtInput').live("cut copy paste",function(e) { e.preventDefault(); }); });