1. parent page
function test() {
var test1 = document.getElementById("seatMap").contentWindow.getReserveChk();
alert(test1);
}
function test1() {
var imgpath = document.getElementById("seatMap").contentWindow.getImagePath("img1");
alert(imgpath);
}
2. child page
function getReserveChk() {
return 'test';
}
function getImagePath(value1) {
return $("img1").src;
}
function setCursor(value1, value2) {
$(value1).style.cursor = value2; // value2 : 'default', 'hand'
}
parent에서 iframe의 함수 호출을 통하여 진행하도록 하는게 제일 무난한듯 싶다.
'programming > jsp' 카테고리의 다른 글
prototype select box 값 가져오기 (0) | 2012.03.21 |
---|---|
innerHTML (0) | 2012.03.21 |
iframe 사이즈 늘리기(1) (0) | 2012.03.21 |
뭐니뭐니해도 기본이 최고인거 같다 -- select box 만들기 (0) | 2012.03.21 |
javascript debug (0) | 2012.03.21 |