点击按钮,跳出一个弹窗,弹窗里放着iframe,如何让iframe禁用鼠标右键
@contextmenu.prevent 这个没有效果
var iframe = document.getElementById('ifm');
iframe.οnlοad=function(){
iframe.contentWindow.document.οncοntextmenu=function(){return false;};
iframe.contentWindow.document.onselectstart=function(){return false;};
};
用id也获取不到iframe啊这里是vue,ref也失败了
求解答