我使用向 DOM 添加了一个脚本
// in the console of facebook.com
var test = document.createElement('script');
test.src = "foo";
document.head.appendChild(test);
但脚本无权访问 DOM。
这是否与同源政策有关?
我使用向 DOM 添加了一个脚本
// in the console of facebook.com
var test = document.createElement('script');
test.src = "foo";
document.head.appendChild(test);
但脚本无权访问 DOM。
这是否与同源政策有关?