programming/jsp 122

뭐니뭐니해도 기본이 최고인거 같다 -- select box 만들기

- explore, firefox 둘다 만족하기 function setSelYear1(value1) { var select1 = document.createElement("select"); select1.setAttribute("id","sel1"); var optionList = document.createElement("option"); optionList.setAttribute("value","25"); var optionListText = document.createTextNode("1시간00"); optionList.appendChild(optionListText); select1.appendChild(optionList); var selectBoxNode = document.getElement..

programming/jsp 2012.03.21

특수문자표

http://waf.seoul.go.kr/source_library/source_05.html 특수문자 Entity 코드로 표현된 특수문자는 대부분의 브라우저에서 문제없이 출력된다. 꺽쇠기호 등을 Entity로 처리하지 않는 경우 브라우저들은 이것을 HTML 태그의 시작이나 끝으로 인식할 수 있다. 따옴표 " "는 HTML 속성의 값이 시작되거나 끝난 것으로 인식할 수 있다. & 기호는 Entity기호의 시작으로 오인될 수 있다. 가장 흔한 실수 : URL에 포함된 & 기호를 Entity로 변환하지 않는 경우이며 특히 웹에디터에서 입력되는 특수문자 등은 Entity 코드로 치환되어야 한다. HTML Latin-1 Character Entities Reference ASCII Entities wit..

programming/jsp 2012.03.21