js怎么获取iframe里面的html内容
1个回答
展开全部
document.getElementById('myFrame').contentWindow.document.body.innerHTML
iframe加载完成事件
var iframe = document.getElementById('myFrame');
if (iframe.attachEvent) {
iframe.attachEvent("onload", function () {
console.log(iframe.contentWindow.document.body.innerHTML);
});
} else {
iframe.onload = function () {
console.log(iframe.contentWindow.document.body.innerHTML);
};
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询