최신 웹 개발 튜토리얼
 

IFrame contentWindow Property

<IFrame을 개체

iframe에 포함 된 문서의 배경색을 변경하는 방법에 crossbrowser 예 :

var x = document.getElementById("myframe");
var y = (x.contentWindow || x.contentDocument);
if (y.document)y = y.document;
y.body.style.backgroundColor = "red";
»그것을 자신을 시도

정의 및 사용

contentWindow 속성은 iframe 요소에 의해 생성 된 윈도우 객체를 반환 (창 개체를 통해를, 당신은 다음 문서 객체와 문서의 요소 중 하나에 액세스 할 수 있습니다).


브라우저 지원

재산
contentWindow

통사론

iframeObject .contentWindow

기술적 세부 사항

반환 값 : 윈도우 객체에 대한 참조

더 예

배경색을 변경하는 iframe이의 문서에 액세스하는 방법의 또 다른 예 :

var x = document.getElementById("myframe");
var y = x.contentWindow.document;
y.body.style.backgroundColor = "red";
»그것을 자신을 시도

<IFrame을 개체