iframe で読み込まれた html を親ページの JavaScript で参照するには、contentWindow を使います。
<iframe id="iframe_id" src="child.html"></ifrmae>
上記のタグで child.html を読み込んでいる場合、親ページから child.html のソースは以下のようにして参照します。
document.getElementById("iframe_id").contentWindow.document.body.innerHTML
<iframe id="iframe_id" src="child.html"></ifrmae>
上記のタグで child.html を読み込んでいる場合、親ページから child.html のソースは以下のようにして参照します。
document.getElementById("iframe_id").contentWindow.document.body.innerHTML