标签:
<html>
<title>禁止剪切、复制、粘贴的文本框</title>
<body>
<input type="text" id="username" name="username" value="zzsky" onpaste="return false" oncontextmenu="return false" oncopy="return false"oncut="return false">
</body>
</html>
标签:
原文地址:http://www.cnblogs.com/www-xiaobo-com/p/4287439.html