and 禁止复制

 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;"/>来解决的。

你可能感兴趣的:(html,function,input,email)