일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- jsp
- mysql
- librecad
- s4a
- 설치
- 파주
- tomcat
- 잡토이 메이킹 코딩 학원
- 안드로이드
- 코딩
- Spring Security
- 운정
- oracle
- 스크래치
- 강좌
- jobtoy
- 톰캣
- 유니티
- 설정
- 예제
- Android
- 오라클
- MSSQL
- Unity
- 잡토이
- 리브레캐드
- 라즈베리파이
- html5
- 시작하기
- 아두이노
- Today
- Total
목록programming/jsp (122)
랩제이
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..
1. Windows Script Debugger 1) 도구>옵션>고급>스크립트 디버깅 사용 안 함 -> 체크해제 2) Windows Script Debugger 다운로드 설치 http://www.microsoft.com/downloads/details.aspx?FamilyID=6a326d9c-f47e-4c92-b42a-b3d43029e96f&DisplayLang=ko 2. Companion.JS 1) 다운로드 http://www.my-debugbar.com/wiki/CompanionJS/HomePage 3. FireBug 1) 다운로드 http://www.getfirebug.com/
prototype - Event.observe Event.observe 는 prototype.js 에 정의된 메소드로 윈도우 load시 다양한 이벤트를 등록해 준다. 예) Event.observe("btnNew", "click", objEvent.fnWriteFrmView); 설명) id "btnNew"라는 엘리먼트에서 click이벤트를 발생하면 objEvent라는 이벤트클래스의 fnWriteFrmView 메소드를 호출해라!