반응형
[1] 부모창 : 우편번호 받을 함수
// 우편번호 받기
function ReceivePostcode(code, code_text) {
$('#hfPostcode').val(code);
$('#tbxAddres').val(code_text);
$('#hfPosttext').val(code_text);
}
[2] 부모창 : 팝업(자식창)띄우는 함수
//지역검색
$('#btnPostNumber').click(function () {
window.open('Zipcode.aspx?form=btnPostNumber', '201311271043', 'width=550, height=350');
return false;
});
[3] 자식창 : 부모창에 우편번호 넘겨주는 함수
// 부모창에 우편번호 넘겨주는 함수
function SetParentForm(code, code_text) {
parent.window.opener.ReceivePostcode(code, code_text);
self.close();
}
'프로그래밍 > 스크립트' 카테고리의 다른 글
jQuery radio버튼 특정숫자보다 높으면 비활성화(disabled) (0) | 2013.11.28 |
---|---|
간단하게 팝업사이즈 자체적으로 조절하는 스크립트 (0) | 2013.11.28 |
화폐 세자릿수마다 콤마표현 (0) | 2013.11.25 |
radio 버튼 미리 선택하기, 선택된 값 가져오기 (0) | 2013.11.25 |
jquery 를 활용한 전체폼 초기화 (0) | 2013.11.25 |