iframe没有id,没有name,这种情况的话如何获取到iframe中的元素?

2024年11月20日 02:24
有3个网友回答
网友(1):

document.getElementsByTagName('iframe')[0]。
var iframe = document.getElementsByTagName('iframe')[0]。

var ifr_document = iframe.contentWindow.document。
ifr_document就是iframe里面的页面的文档对象了 。

网友(2):

对第一个回答的补充:

var iframe = document.getElementsByTagName('iframe')[0];

var ifr_document = iframe.contentWindow.document;
//ifr_document就是iframe里面的页面的文档对象了

网友(3):

document.getElementsByTagName('iframe')[0]