검색결과 리스트
post 방식 팝업에 해당되는 글 1건
- 2012.07.11 팝업 POST 전송 , 팝업 액션
글
팝업 POST 전송
var width = 400;
var height = 500;
var left = (screen.width/2)-(width/2);
var top = (screen.height/2)-(height/2);
var win = window.open ("", "popupWindow", 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width='+width+', height='+height+', top='+top+', left='+left);
document.searchForm.target = "popupWindow";
document.searchForm.action = "<c:url value='/talk/store/massageRegit.do'/>";
document.searchForm.submit();
RECENT COMMENT