document. importNode ()예제
<iframe src="/index2.php" style="height:380px;width:520px;"></iframe> <button onclick="homzzang()">클릭</button> <script> function homzzang() { var frame = document.getElementsByTagName("IFRAME")[0] var h = frame.contentWindow.document.getElementsByTagName("H1")[0]; var x = document.importNode(h, true); document.body.appendChild(x); } </script> /index2.php <h1>홈짱닷컴</h1> <h1>Homzzang.com</h1> <h1>홈페이지 제작관리 + 서버관리</h1>
<iframe src="/index2.php" style="height:380px;width:520px;"></iframe>
<button onclick="homzzang()">클릭</button>
<script>
function homzzang() {
var frame = document.getElementsByTagName("IFRAME")[0]
var h = frame.contentWindow.document.getElementsByTagName("H1")[0];
var x = document.importNode(h, true);
document.body.appendChild(x);
}
</script>
/index2.php
<h1>홈짱닷컴</h1>
<h1>Homzzang.com</h1>
<h1>홈페이지 제작관리 + 서버관리</h1>
※ 아이프레임 안 내용을 잘라서 가져옴.