eclipse(123)
-
Jsp - 이미지 제어
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 Insert title here //window(창) - location(주소줄) //- history(방문기록) //- document(html문서) ->image,link,layer... // - form(로그인창)->text,password,textarea // -checkbox, radio // -select - option //window.history.변수 제목 document.title 배경색 document.bgCo..
2020.06.16 -
Jsp - 화면 색 변경
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 Insert title here //window(창) - location(주소줄) //- history(방문기록) //- document(html문서) ->image,link,layer... // - form(로그인창)->text,password,textarea // -checkbox, radio // -select - option //window.history.변수 제목 document.title 배경색 document.bgColor // 글자색 document.f..
2020.06.16 -
Jsp - 페이지 이동
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 32 33 34 35 36 37 38 39 Insert title here // 웹브라우저 내장객체 // window(창) - location(주소줄) // - history(방문기록) // - document(html문서) ->image,link,layer... // - form(로그인창)->text,password,textarea // -checkbox, radio // -select - option //window.history.변수 history.length 방문기록개수 //window.history.함수() history.back() 뒤로이동 //..
2020.06.16 -
Jsp - 주소확인
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 Insert title here // 웹브라우저 내장객체 // window(창) - location(주소록) // - history(방문기록) // - document(html문서) ->image,link,layer... // - form(로그인창)->text,password,textarea // -checkbox, radio // -select - option // window생략가능 // window.location.변수 location.href - 주..
2020.06.16 -
Jsp - 창열기,닫기
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 32 33 34 35 36 37 38 39 40 Insert title here // 웹브라우저 내장객체 // window(창) - location(주소줄) // - history(방문기록) // - document(html문서) ->image,link,layer... // - form(로그인창)->text,password,textarea // -checkbox, radio // -select - option // window내장객체 ->변수status,opener(창을 열었던기록), 함수open(),close() // 내장객체.변수 내장객체.함수() //..
2020.06.16 -
Jsp - 화면4
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 Insert title here //내장함수 이름 호출해서사용 // function alert(s) { // //창을 만들고 창안에 s변수에 저장된 메시지 출력 // return; // } // 함수이름("출력하고자하는 값"); // alert("메시지 출력"); //confirm 확인 취소를 선택해서 결과값을 리턴받는 함수..
2020.06.16