禁止在IFRAME子页面点击右键
2022-9-27 乱云飞 评论(0) 浏览(183) 标签: 网页代码 IFRAME页面 禁止右键
<script type="text/javascript">//禁止在IFRAME子页面点击右键
window.onload=function(){
document.getElementById('QQ5082500').contentDocument.oncontextmenu = function(){
return false;
}
}
</script>