일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- jobtoy
- 안드로이드
- 잡토이 메이킹 코딩 학원
- 설정
- 라즈베리파이
- jsp
- 예제
- 잡토이
- 유니티
- 강좌
- 운정
- html5
- 톰캣
- librecad
- Android
- tomcat
- 설치
- oracle
- 아두이노
- MSSQL
- mysql
- 스크래치
- 리브레캐드
- 시작하기
- 코딩
- 파주
- 오라클
- Unity
- Spring Security
- s4a
Archives
- Today
- Total
랩제이
뭐니뭐니해도 기본이 최고인거 같다 -- 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.getElementById("selectBox1");
selectBoxNode.appendChild(select1);
}
<div id="selectBox1"></div>
'programming > jsp' 카테고리의 다른 글
parent에서 iFrame함수 호출하기 (0) | 2012.03.21 |
---|---|
iframe 사이즈 늘리기(1) (0) | 2012.03.21 |
javascript debug (0) | 2012.03.21 |
prototype - Event.observe (0) | 2012.03.21 |
javascript - pop() (0) | 2012.03.21 |