我有一个带有 iframe 的 html 页面。(这里是)
他们都在不同的领域。
页面 A:域 = http://jsbin.com/
它托管一个带有域的 iframe:Example.com
<iframe src='http://example.com' id='a'> </iframe>
但是 - 当我尝试通过以下方式访问 iframe 内容时:
$(document).ready(function ()
{
console.log($("#a").contents().find("*").length)
});
我确实看到了回应:
问题 :
为什么我没有收到关于访问不同来源的错误?
评论:似乎我无法访问元素的内容,但我很肯定我应该遇到跨域错误。
相关信息: chrome 版本 30.0.1599.66