文章列表
摘自:http://thomaslee007.iteye.com/blog/152080
关键字: js
禁止鼠标左右键代码/禁止网页选中/禁止另存为/防复制代码
<body oncontextmenu="return false" onselectstart="return false">
<noscript><iframe src=*.html></iframe></noscript>
<script>
function stop(){
return false;
}
d ...