자식창에 선언해 놓은 함수나 변수를 접근할수 있다
$('#iframe').get(0).contentWindow.변수명;
$('#iframe')[0].contentWindow.변수명;
$('#iframe').get(0).contentWindow.함수명;
$('#iframe')[0].contentWindow.함수명;
자식창에 id,함수를 접근하는 방법이다
$('#iframe')[0].contentWindow.$('#_parent').height();//높이 100을 가져올수 있다
$('#iframe')[0].contentWindow.js_parent();//함수를 실행할수 있다