contentWindow屬性是用于訪問iframe元素的窗口對(duì)象的屬性。它可以用于獲取iframe元素的窗口對(duì)象,然后可以對(duì)其進(jìn)行操作。
使用contentWindow屬性的一般步驟如下:
var iframe = document.getElementById("myIframe");
var iframeWindow = iframe.contentWindow;
iframeWindow.document.body.style.backgroundColor = "red";
需要注意的是,由于同源策略的限制,如果iframe元素的源與主頁面的源不同,訪問iframe的窗口對(duì)象可能會(huì)受到限制。