禁止网页另存为 右键,左键等
Posted Cgrain
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了禁止网页另存为 右键,左键等相关的知识,希望对你有一定的参考价值。
禁止另存为,
<body></body> 标签里面写入
<noscript><iframe src=‘*.htm‘></iframe></noscript>
禁止右键
<script>
document.oncontextmenu = function () { alert(右键不能哟)}
</script>
禁止右键
<script>
document.onselectstart= function () { alert(右键不能哟)}
</script>
以上是关于禁止网页另存为 右键,左键等的主要内容,如果未能解决你的问题,请参考以下文章
网页不让用户复制方法总汇,设置html禁止选择,保护源码,js禁止复制文字