'JAVASCRIPT&CSS/문제해결'에 해당되는 글 1건

1. 자바스크립트 

window.parent.document.getElementById('myframe').width = '500px';

window.parent.document.getElementById('myframe').height = '500px';



2. jQeury

$('#myframe', window.parent.document).width('500px');

$('#myframe', window.parent.document).height('500px');



3. 동작이 안하는경우 

Uncaught TypeError: Cannot set property “height” of undefined

이런 에러가 날 경우는 


iframe 에 hegith 속성이 없기 때문이다.

<iframe hegith='200' ..

이런식으로 height 을 명시해주자!!

style='hegith:200' 이렇게 사용해도 안된다!!!




블로그 이미지

낭만가을

,