개발(61)
-
el, jstl
연산 가능 ${"홍길동"} 포준 jsp 태그 : el 태그: ${x } ${10+4 } ${10-4 } ${10/4 } ${10*4 } ${10>=4 } ${10 EL: ${not empty xxx} EL sessionScope: ${sessionScope.x3 } EL session: ${applicationScope.x2.xxx } el : ${param.userid } el : ${param.passwd } ${param.aaa} applicationScope 이름: ${applicationScope.aaa } 이름 aaa: ${aaa } bbb: ${bbb } request 의 이름 : aaa1 aaa2 jstl core 태그의 사용 --if xxx: ${xxx } 홍길동과 같음 홍길동임 유관순임..
2024.01.11 -
jquery
CDN ============ javascript document.getElementById(”aaa”)→ 태그(dom) document.querySelect(”#aaa”) → 태그(dom) jquery $(”#aaa”) → 태그 (dom) → jquery 객체로 반환 → javascript dom: .value, .innerText, .innerHtml jquery 객체 dom: .val(), .text(), .html() ex) js: document.getElementById(”aaa”).innerText jquery: $(”#aaa”).text()
2024.01.11 -
DOM, EVENT
BOM 몸의 바깥 reload target.html location.href='targrt.html' target2.html location.href='target2.html' target3() 전송 폼밖 전송안됨 DOM 사과 바나나 수박 포도 사과 바나나 수박 포도 사과 바나나 수박 포도 가격 수량 10 20 30 40 총 가격 홍갈동 이순신 유관순 확인이순신 좋아하는 과일 선택하기 사과 오렌지 바나나 결과보기 모두선택1 모두선택2 좋아하는 과일 선택하기 사과 오렌지 바나나 결과보기 event 클릭 이벤트 정보 클릭 이벤트 정보 클릭 이벤트 정보 클릭 이벤트 정보 인라인 방식 window.onload = function(){ var imgs = document.getElementsByTagName("i..
2023.12.24 -
jsp- 연산자 , 문장, 함수
03장 산술연산자 var a = 10; var b= 3; console.log(a+b); console.log(a-b); console.log(a*b); console.log(a/b); console.log(a%b); var aa ="10"; console.log(aa+20); console.log(aa-5); console.log(aa*5); console.log(aa/5); var y =3; var y2 =3; ++y; //4 y2++; //4 console.log(y+" "+y2); //y=4, y2=4 var y3 = ++y; //y3 = 5, y=5 var y4 = y2++; // y4=4, y2=5 console.log(y+" "+y3); //5, 5 console.log(y2+" "+y4);..
2023.12.24 -
javascript
01 basic aaaaaaaaaaaaaaa aaaaaaaa aaaaaaaaaaaaaaa id test header ====== capibara coffeebara hello hello 02. dataType 3. 변수 4. 데이터 형변환 데이터가 필요에 의해서 자동으로 형변환 된다. 가. *,/,- 사용하는 경우 ( +제외) 예> var test = “100” * 2; è 200 나. 불린값으로 변환 다음과 같은 5가지 데이터는 필요에 의해서 false 값 으로 변환된다. 역으로 5가지 이외의 데이터는 필요에 의해서 true 값으로 변환된다. 0 -” NaN null undefine 03_0. variable //결과같음 가. 변수 선언 var 변수명; // 파싱단계에서는 undefined 값이 할당된..
2023.12.24 -
My batis2
HashMap List list= service.selectAllHashmap(); System.out.println(list); for (HashMap dept : list) { BigDecimal dno = (BigDecimal) dept.get("DEPTNO");//숫자 BigDecimal형태 저장 int deptno= dno.intValue(); String dname= (String) dept.get("DNAME"); String loc=(String) dept.get("LOC"); System.out.println(deptno+"\t"+dname+"\t"+loc); } System.out.println("======================================="); for (Ha..
2023.12.23