본문 바로가기

HTML│CSS│Java Script26

Ajax 자바스크립트로 xml , json 파일 읽기 Ajax 배경 지식 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 function createRequest() { var request ; try { // IE 7.0이상일때 request = new XMLHttpRequest(); } catch (e) { try { request = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { request = new ActiveXObject("Msxml3.XMLHTTP"); } } return request ; } // 1. 객체 생성(XMLHttpReqeust 객체 생성) var reques.. 2018. 7. 21.
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.