js 获取iframe dom元素
时间: 2023-06-21 17:16:14 浏览: 124
JS获取并操作iframe中元素的方法
5星 · 资源好评率100%
可以使用以下代码获取iframe中的DOM元素:
```javascript
var iframe = document.getElementById("myIframe");
var iframeDoc = iframe.contentDocument || iframe.contentWindow.document;
var domElement = iframeDoc.getElementById("myElement");
```
其中,"myIframe"是iframe的id,"myElement"是需要获取的DOM元素的id。
阅读全文