Jsp - 화면 2
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 31 32 33 34 35 36 37 38 Insert title here // 함수 : 자주 사용하는 명령들의 묶음 => 이름을 부여=>사용할때 이름 호출 function funname() { alert('메시지1'); alert('메시지2'); alert('메시지3'); alert('메시지4'); alert('메시지5'); return; } // x+10 변수x =>결과출력만 function funname2(x) { alert(x+10); return; } function funname3() { return "음료수"; } // x+10 =>결과받기 func..
2020.06.16