본문 바로가기

분류 전체보기375

JSP Servlet 1 JSP Servlet 1 개요 웹 프로그래밍 - 웹 어플리케이션을 구현하는 것 웹 어플리케이션 - 웹을 기반으로 작동하는 프로그램 웹 - 1개 이상의 사이트가 연결되어 있는 인터넷 서비스의 한가지 형태 인터넷 - 1개 이상의 네트워크가 연결되어 있는 형태 http : // localhost:8080/project/controller?cmd=2; 프로토콜/ ip주소/ port / information path 프로토콜 - 네트워크상에서 약속한 통신규약 (http , ftp , smtp , pop , dhcp) ip = 네트워크 상에서 컴퓨터를 식별 할 수 있는 주소 dns = ip 주소를 인간이 쉽게 외우도록 매핑한 문자열 port = ip 주소가 컴퓨터를 식별할 수 있게 해준다면 port 번호는 해당 컴.. 2017. 12. 24.
html1208 html 1208 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 CSS 문법, 적용방법 /* Internal */ h2{ background-color: yellow; border: 1px solid red; } This is a heading This is a heading This is a heading Colored by Color Scripter cs 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 선택자 /* 전체 선택 */ *{color:.. 2017. 12. 7.
html 1207 html 1207 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 시멘틱 태그 여기는 헤더 메뉴1 메뉴2 메뉴3 메뉴4 프로그래밍 준비하기 java html css python 프로그래밍 준비하기 c,c++,c# Copyright 2017 fors Colored by Color Scripter cs 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.. 2017. 12. 7.
html / css 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 시멘틱 태그 여기는 헤더 메뉴1 메뉴2 메뉴3 메뉴4 프로그래밍 준비하기 java html css python 프로그래밍 준비하기 c,c++,c# Copyright 2017 fors Colored by Color Scripter cs 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 .. 2017. 12. 6.
html 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 removeChild, parentNode, replaceChild onload=function(){ //부모 노드에서 자식 노드 삭제 document.getElementById("div").removeChild(p2); //자식 노드에서 부모노드에 접근 document.getElementById("str").parentNode.parentNode.removeChild(p4); var div = document.getElementById("str").parentNod.. 2017. 12. 6.