禁止网页另存为 右键,左键等

禁止另存为,

<body></body>  标签里面写入

   <noscript><iframe src='*.htm'></iframe></noscript> 

禁止右键

<script>

   document.oncontextmenu = function () { alert(右键不能哟)}

</script>

禁止右键

<script>

   document.onselectstart= function () { alert(右键不能哟)}

</script>

原文地址:https://www.cnblogs.com/whatarey/p/9032317.html