如何在一个域的沙盒iframe中的元素上挂起事件?

时间:2018-07-01 10:05:47

标签: javascript iframe

我的页面上有iframe,该域很常见。

<iframe id = "page" src = "/" sandbox = "allow-same-origin"> </iframe>

我正在尝试挂起活动

document.getElementById ("page"). onload = function () {
editor = this.contentWindow.document; 
editor.addEventListener ("contextmenu", function (e) {
// here the event code
});
}

在firefox中,事件在chrome中触发-不会触发(“”中的阻止脚本执行,因为文档框架被沙盒化,并且未设置“允许脚本”权限。)。我无法附加允许脚本。我需要在iframe中禁用脚本。

0 个答案:

没有答案