JSP 15

211012_form전송(post,get)

myform.html DOCTYPE html> Insert title here function check() { if(frm.msg.value=='') { alert("메세지를 입력해주세요"); frm.msg.focus(); //초기화 return false; //입력을 안 하면 안 되게끔 함 } } /* form에 name을 안 줬을 때 */ function check2(f) { if(f.msg.value=='') { alert("메세지를 입력해주세요"); f.msg.focus(); return false; } } 폼단위로 전송(post방식) 메세지: 폼단위로 전송(get방식) 메세지: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ post DOCTYPE html> Insert ..

JSP 2021.10.12