728x90
http://shonm.tistory.com/457
[ JAVASCRIPT ] iframe 에서 부모창과 자식 창의 함수 호출
JAVASCRIPT/부모창에서 자식창으로 값전달 2012/11/26 17:47iframe 내부에서 parent 로 함수 호출 하는 방법은 아래와 같습니다.
parent.jsp
<script>
function Msg(){
alert("호출");
}
</script>
<iframe name="ifrm" src="child.jsp">
===========================================
child.jsp
<script>
function sub(){
parent.Msg();
}
</script>
<input type="button" value="submit" onclick="sub();"/>
============================================
반대로는
ifrm.sub() 로 호출 하면 된다.
728x90
'Script' 카테고리의 다른 글
textarea 특정 위치에 원하는값 넣기 (0) | 2015.11.16 |
---|---|
string boolean number 형변환 (0) | 2015.10.30 |
인터넷 익스플로러 교차스크립트 xss 기능 동작 우회 방법 (0) | 2015.10.28 |
브라우저 구분 (0) | 2015.10.28 |
replaceall 사용하기 (0) | 2015.10.21 |