我的问题是,当我尝试访问子域(test.example.com:xx)的
中的内容时,iframe阻止了我的Javascript访问,其中xx是一行我的代码编号,在错误下方查看。
错误:
未捕获的DOMException:阻止了具有来源的帧 “ https://example.com ”访问跨域框架。在 window.onload( https://example.com )
这里是 https://example.com/index.html 的代码:
<!DOCTYPE html>
<身体>
<脚本>
var x = document.getElementById(“ frames”);
console.log(x);
window.onload = function(){
console.log(window.frames [0] .document.body.innerHTML);
}