모달상자로 띄운 창의 링크가 새창으로 떠서 고민한 적이 있다.
window.showModalDialog ( "주소", null , "dialogWidth:500px; dialogHeight:400px; status:off;scroll:no;");
이것을 해결 할려면 띄울 창에 다음의 소스를 넣어주자.
<head>
<base target="_self" />
</head>
window.showModalDialog ( "주소", null , "dialogWidth:500px; dialogHeight:400px; status:off;scroll:no;");
이것을 해결 할려면 띄울 창에 다음의 소스를 넣어주자.
<head>
<base target="_self" />
</head>
요즘은 잘 쓰지 않지만.
'프로그래밍' 카테고리의 다른 글
format-number 함수 (Xpath함수) (0) | 2015.02.13 |
---|---|
파일 용량 표시 XSL, Function (0) | 2015.02.13 |
프린트 다음장 출력하기 (0) | 2015.02.13 |
프린트 인치를 밀리로 바꾸기 (0) | 2015.02.13 |
WebConfigurationManager의 사용 (0) | 2015.02.13 |