contentDocument是获得iframe子窗口的document对象,但兼容ff和ie8+
contentWindow是获得子窗口的window对象,兼容大部分浏览器,contentWindow.document才是获得document对象
所以获得iframe内容时一般兼容性写法是这样的 (iframe.contentDocument||iframe.contentWindow.document).body.innerHTML
关于iframe的contentDocument和contentWindow,布布扣,bubuko.com
关于iframe的contentDocument和contentWindow
原文地址:http://www.cnblogs.com/bobogoodgoodstudy/p/3735695.html