분류 전체보기(158)
-
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 56 57 58 59 60 61 62 63 64 Insert title here //window(창) - location(주소줄) //- history(방문기록) //- document(html문서) ->image,link,layer... // - form(로그인창)->text,password,textarea // -checkbox, radio // -select - option // window.document.forms[0]...
2020.06.16 -
Jsp - input ,type
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 Insert title here //window(창) - location(주소줄) //- history(방문기록) //- document(html문서) ->image,link,layer... // - form(로그인창)->text,password,textarea // -checkbox, radio // -select - option //그냥 a.jsp로 이동 //submit은 입력한 텍스트를 가지고 a.jsp로 이동 //method="post" ..
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 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