<input type="text"> and <html:text> 禁止复制

来源:互联网 发布:党规党纪面前知敬畏 编辑:程序博客网 时间:2024/06/05 08:19

 http://apps.hi.baidu.com/share/detail/45995238

<input type="text" onselectstart="return false" oncopy="return false" onpaste="return false" /> 这样就只有这个控件不能拷贝,不能粘贴了。

但是我用html:text根本就没有onselectstart ..这些事件,所以没办法,这也用不了。

最后,还是用<html:text maxlength="50" size="36" property="email1" onmousedown="this.oncontextmenu = function() { return false;} " onkeydown="if(event.ctrlKey) return false;"/>来解决的。