有没有办法规避页面(域B)上的 iframe(域A)尝试访问 的属性时出现的跨域安全错误?window.top
我想调用一个函数,即。someFunc,属于域 B,通过域 A 的 iframe 中的事件,在域 B 的上下文中。
例子:
a.com/index.html
<!DOCTYPE html>
<html>
<body>
<script>
var someFunc = t => document.querySelector("#test").text = t;
</script>
<span id="test">This is some dummy text.</span>
<iframe src="https://b.com/index.html"></iframe>
</body>
</html>
b.com/index.html
<!DOCTYPE html>
<html>
<body>
<button id="btn">Test</button>
<script>
document.querySelector("#btn").addEventListener("click", (e) => {
window.top.someFunc("This text has been changed through a cross-origin")
});
</script>
</body>
</html>
此示例在 Firefox 上引发以下错误:
SecurityError: Permission denied to access property "someFunc" on cross-origin object
12345678_0001
相关分类