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);
};
}