이 문서의 예에서는 iframe에서 marginHeight 및 marginWidth 속성을 가져오는 JS 메서드를 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
<!DOCTYPE html> <html> <body> <iframe id="myframe" src="demo_iframe.htm" marginheight="50" marginwidth="50"> <p>Your browser does not support iframes.</p> </iframe> <br><br> <p>The value of the marginheight attribute and marginwidth are: <script> document.write(document.getElementById("myframe").marginHeight); document.write(document.getElementById("myframe").marginWidth); </script> <p> </body> </html>
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.