天天看點

關于iframe的contentDocument和contentWindow

contentDocument是獲得iframe子視窗的document對象,但相容ff和ie8+

contentWindow是獲得子視窗的window對象,相容大部分浏覽器,contentWindow.document才是獲得document對象

是以獲得iframe内容時一般相容性寫法是這樣的

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