iframe里的页面禁止右键事件的方法

(编辑:jimmy 日期: 2026/1/19 浏览:2)

在子页面中加入:

复制代码 代码如下:
<script>
document.oncontextmenu = function(){
return false
}
</script>

即可