티스토리 뷰

JavaScript

Javascript로 Parameter 값을 넘기기

개발로퍼 2016. 12. 1. 18:41

참조

  • http://develop88.tistory.com/entry/%EC%9E%90%EB%B0%94%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8%EB%A1%9C-%EA%B0%81%EC%A2%85-%EA%B0%92%EB%84%98%EA%B8%B0%EB%8A%94%EB%B0%A9%EB%B2%95



Javascript로 Parameter 값을 넘기는 방식


GET방식

String type = "1";
String type2 = "2":

function search(type,type2){
	location.href="search.jsp?type="+type+"&type2=type"+type2;
}
function search(){
	location.href="search.jsp?type=<%=type%>+&type2=<%=type2%>";
}
String url = request.getParameter("url");
response.sendRedirect("login.jsp?url="+url);

결과는 search.jsp?type=1&type2=2


POST방식


function search(){
	document.frm.action = "search.jsp";
	document.frm.method = "post";
	document.frm.submit();
}


버튼을 클릭





Opener (부모창)에 값 넘기기

function abc(){
	var val = "123";
	
	opener.document.getElementById("abc").value = val;
	window.opener.form.abc.value = val;
	window.close();
}


Insert, Update, Delete 등의 구문을 처리 후에 다시 이동


self.window.alert("처리되었습니다.");
opener.location.reload();
window.close();
//opener.location.reload();
location.href = "abc.jsp";


댓글
최근에 올라온 글
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
Total
Today
Yesterday