当前位置:首页 >> 网络编程

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

在子页面中加入:

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

即可