天天看点

关于iframe的contentDocument和contentWindow

contentDocument是获得iframe子窗口的document对象,但兼容ff和ie8+

contentWindow是获得子窗口的window对象,兼容大部分浏览器,contentWindow.document才是获得document对象

所以获得iframe内容时一般兼容性写法是这样的

 (iframe.contentDocument||iframe.contentWindow.document).body.innerHTML