随笔分类 -  Javascript

摘要:一、禁止复制使用方法:在oncopy事件中return falseoncopy="return false;"1、禁止复制网页内容<body oncopy="return false;">2、禁止复制元素内容<input type="text" name="username" oncopy="return false;" />二、禁止粘贴使用方法:在onpaste事件中return falseonpaste="return false;"禁止将内容粘贴 阅读全文
posted @ 2011-09-12 16:51 这疼那疼 阅读(1716) 评论(1) 推荐(0)