일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 라즈베리파이
- 설정
- 리브레캐드
- html5
- s4a
- 아두이노
- librecad
- 예제
- 안드로이드
- 유니티
- 운정
- 잡토이
- Unity
- jobtoy
- 강좌
- 스크래치
- tomcat
- 시작하기
- 오라클
- Android
- 설치
- 파주
- mysql
- 코딩
- jsp
- MSSQL
- 잡토이 메이킹 코딩 학원
- 톰캣
- oracle
- Spring Security
- Today
- Total
목록programming (381)
랩제이
var seatstate = new Array(1); var seatstate1 = new Array('1'); var seatbookingstate1 = new Array(); var seatbookingstate2 = new Array(); function arrayCheck() { seatbookingstate1 = seatstate1; alert('1의경우=' + seatbookingstate1[0]); alert('2의경우=' + seatstate[0]); } 이 경우에 1의 경우는 1이 찍힌다. 2의 경우는 undefined 가 찍힌다. 왜 그러는지는 정확히 모르겠다. 기본 개념이 없다 -- 차이는 문자와 숫자라는 것 ^^ 이 개념이 json과 연결되는 것인가?
function disabledTrueCheck() { document.getElementById("sectornm0").disabled = true; } function disabledFalseCheck() { document.getElementById("sectornm0").disabled = false; }
iframe 사이즈 늘리기(2) ie, firefox에서 둘다 높이가 잘 늘어난다. - ex1.html 늘리기 - ifPage.html This is my HTML page. test 늘리기
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..
실행결과>
1. parent page function test() { var test1 = document.getElementById("seatMap").contentWindow.getReserveChk(); alert(test1); } function test1() { var imgpath = document.getElementById("seatMap").contentWindow.getImagePath("img1"); alert(imgpath); } 2. child page function getReserveChk() { return 'test'; } function getImagePath(value1) { return $("img1").src; } function setCursor(value1, value2) ..
1. parent page 브라우저에 상관없이 parent page에서 height는 정확하게 가져오는데 width는 좀 어렵다. 그래서 width는 고정한다. 그러면 높이는 자동으로 맞추어준다. 2. child page 그냥 기존대로 ...
- 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..