iframe 의 윈도우객체에 접근하기 contentWindow , contentDocument
contentWindow property는 frame 이나 iframe 에 의해 생성된 Window 객체를 말한다 이를 통하여 생성된 frame 에 접근하고, 해당 윈도우에 포함된 document 에 접근가능하며, 또한, document 내의 각 element 에도 접근할 수 있다. [출처] Frame/IFrame contentWindow Property / frame 접근방법 - contentWindow|작성자 용남짱 a페이지 내에 ifrmae 이 있고, 그 iframe 에 b.html 페이지가 로드된 경우, 아래와 같이 접근이 가능하다. document.getElementById('iframe_id').contentWindow.document .getElementById("element_id") 또는..
IT공부방/HTML5, CSS
2016. 7. 28. 09:53