개발하자 (326) 썸네일형 리스트형 createElement, appendChild aaa document 객체 document.createElement("태그명") document.createTextNode("텍스트") 객체명.insertBefore(newChild,refChild) 객체명.replaceChild(newChild,oldChild) 객체명.removeChild(oldChild) 객체명.appendChild(newChild) 객체명.parentNode 객체명.childNodes 객체명.previousSibling 객체명.nextSibling select 한 option 값을 이용해서 배경색바꾸기 onchange사용의 예 red orange gray red orange gray 주소선택해서 이전창으로 불러오기 a.html ========================================= bb.html =================================================== text value값을 id로 이용하기 eval,getElementById window.open(새창띄우기) a.html ====== b.html ====== 새창이다 onfocus,onblur emp테이블의 ename 출력하고 클릭하면 상세정보 나옴(dept테이블 조인) DataAccessException.java ========================================================== package kr.co.seoulit.common.dao; @SuppressWarnings("serial") public class DataAccessException extends RuntimeException { public DataAccessException(){ super(); } public DataAccessException(String message){ super(message); } public DataAccessException(Throwable cause){ super(cause); } public DataAccessException(S.. 이전 1 ··· 19 20 21 22 23 24 25 ··· 41 다음