본문 바로가기
JAVA/JavaScript

iframe으로 파일 불러올 때 iframe안에 header, footer 없애기

by java나유 2024. 12. 23.

 

 

 

한 파일 안에 (ex html, jsp 등)

 

iframe을 불러올 때 

그 불러오는 파일에도 header, footer 가 있을 텐데 (공통처리했다면)

 

그러면 가시성이 안 좋음으로 없애야 할 때가 있다.

 

이럴때는 공통 처리한 footer 밑에 

iframe이 load될 때 안에 있는 헤더, 푸터는 못가지고 오게 할 수 있음.

 

$("#showFrame").load(function() { //iframe ID값 
    $("#showFrame").contents().find(".headerWrap").remove(), //class없애기
    $("#showFrame").contents().find("footer").remove() //테그 없애기

});

 

id, name, class, tag 등으로 상황에 맞게 사용하세요.

728x90

댓글