禁止拷贝网页代码,禁止复制粘贴

// 禁止右键查看源代码
<body oncontextmenu="window.event.returnValue=false">
//禁止拷贝代码,不能选中内容
<div onselectstart="return false">不能拷贝</div>
//禁止粘贴到input中
 <input type="text" onpaste="return false" />