关于 html:如何使用 javascript 访问 iframe #document

How do i access Iframe #document with javascript

我有这个框架我无法访问,从最初检查框架我注意到框架包含#document 然后我写了一个代码来访问框架。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$body = document.body;    
$body.children[3];    
$yo = $body.children[3];
$yo.children[0];    
$next = $yo.children[0];    
$next.children[3];    
$plus = $next.children[3];    
$plus.children[0];    
$star = $plus.children[0];    
$star.children[0];    
$staragain = $star.children[0];    
$staragain.children[1];    
$nextstar = $staragain.children[1];    
$nextstar.children[1];    
$afternext = $nextstar.children[1];    
$afternext.contentWindow;

最后一行返回restricted,并且
iframe.contentDocument 返回 null
然后我尝试访问框架文档,它是一个带有iframe.children[0]的#document,它返回了undefined,然后我让数组保持打开状态但没有发生任何事情。我在框架上运行的所有代码都返回未定义我如何访问这个框架#document ?yoyoyo.


iframe.contentWindow.document 但前提是原点相同,因为同源策略。