要获取 iframe 中的元素,可以:直接访问 iframe 元素,通过 contentdocument 或 contentwindow 获取内部元素。使用 getelementbyid 访问具有特定 id 的元素。使用 queryselector 选择具有特定 css 选择器的元素。使用 queryselectorall 选择所有具有特定 css 选择器的元素。但请注意跨域限制,不能访问不同域的 iframe 中的元素。
如何获取 iframe 中的元素
直接访问 iframe
最直接的方法是直接访问 iframe 元素并通过其 contentDocument 或 contentWindow 属性获取内部元素。
const iframe = document.querySelector('iframe'); const iframeDocument = iframe.contentDocument; const iframeWindow = iframe.contentWindow; const element = iframeDocument.getElementById('elementId');
登录后复制
使用 getElementById
可以通过 getElementById 方法访问 iframe 中具有特定 ID 的元素。
const element = iframeDocument.getElementById('elementId');
登录后复制
使用 querySelector
querySelector 方法可用于选择 iframe 中具有特定 CSS 选择器的元素。
const element = iframeDocument.querySelector('selector');
登录后复制
使用 querySelectorAll
querySelectorAll 方法可用于选择 iframe 中所有具有特定 CSS 选择器的元素。
const elements = iframeDocument.querySelectorAll('selector');
登录后复制
注意:
- 必须在 iframe 加载完成后才能访问其内容。
- 跨域限制:从父页面无法访问不同域的 iframe 中的元素。
以上就是js如何获取iframe里面的元素的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:老板不要肥肉,转转请注明出处:https://www.dingdanghao.com/article/577817.html