js获取iframe元素

追风不跟风 / 2023-08-28 / 原文

前提条件:iframe加载完后

let iframe = document.getElementById('iframeId').contentWindow;
// 测试往里添加内容
iframe.document.body.innerText = 'hello'