일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 코딩
- 잡토이 메이킹 코딩 학원
- tomcat
- 유니티
- oracle
- 잡토이
- 안드로이드
- html5
- 아두이노
- Android
- 톰캣
- 리브레캐드
- 시작하기
- 라즈베리파이
- 예제
- jsp
- Unity
- 강좌
- 오라클
- librecad
- Spring Security
- 운정
- mysql
- MSSQL
- 파주
- s4a
- 스크래치
- jobtoy
- 설치
- 설정
- Today
- Total
목록Box (3)
랩제이
select box 값 가져오기 writeLog('value1 = '+value1); writeLog('value = '+$("selUseTime").value); writeLog('text = '+$("selUseTime").text); // 나오지 않음 writeLog('selectedIndex = '+$("selUseTime").selectedIndex); writeLog('length = '+$("selUseTime").length); writeLog('length = '+$("selUseTime").options[$("selUseTime").selectedIndex].text); writeLog('length = '+$("selUseTime").options[$("selUseTime").sele..
- 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..