[Javascript] 팝업 창에서 부모창에 접근할 경우
window.open(url, title, newStyle); |
window.open 으로 생성한 경우에는, window.opener 로 접근
window.showModelessDialog(url,window,winstyle); |
window.showModelessDialog 으로 생성한 경우에는, window.dialogArguments 로 접근합니다.
showModalDialog 팝업창에서 부모창에 접근하기 위하여 함수를 추가합니다.
// 팝업창에서 opener를 통해서 부모창에 접근할 수 있습니다.
$(document).ready(function () {
if (opener == undefined)
opener = window.dialogArguments;
});
|
function OpenModalWindowSecure(url, winName, width, height) {
return window.showModalDialog(url, winName, "dialogHeight: " + height + "px; dialogWidth: " + width + "px; edge: raised; center: yes; help: no; resizable: no; status: no; scroll:no");
}
|
'Programming > JavaScript' 카테고리의 다른 글
[jstl] callback 함수명 전달하기 (0) | 2016.01.27 |
---|---|
[jquery] jquery를 사용한 input, select 읽기전용으로 변경 (0) | 2016.01.25 |
[Javascript] jquery extend (0) | 2015.12.31 |
[Javascript] TISTORY, Syntax Highlight (0) | 2015.10.31 |
[ionic] Proxy 설정 (0) | 2015.09.27 |
댓글