Remove
-
[javascript] 62. DOM Node - 자바스크립트 강좌 JS / CSEWeb/JavaScript 2015. 6. 13. 15:41
JavaScript HTML DOM Elements (Nodes) 1. Creating New HTML Elements (Nodes) HTML DOM에 새로운 요소를 추가하기 위해서, 먼저 요소를 생성하고, 존재하는 요소에 덧붙이면 됩니다. 1234567891011121314 This is a paragraph.This is another paragraph. var para = document.createElement("p");var node = document.createTextNode("This is new.");para.appendChild(node); var element = document.getElementById("div1");element.appendChild(para);Colored by..
-
[jQuery] 15. Remove - jQuery 강좌 jQuery / CSEWeb/jQuery 2015. 6. 13. 11:22
jQuery - Remove Elements 1. Remove Elements/Content 요소와 내용을 삭제하기 위한, 2 개의 jQuery 메소드가 있습니다: - remove() - empty() 2. jQuery remove() Method remove() 메소드는 선택된 요소와 그의 자식 요소들까지 제거합니다. 12345678910111213141516171819202122232425262728$(document).ready(function(){$("button").click(function(){$("#div1").remove();});}); This is some text in the div.This is a paragraph in the div.This is another paragraph ..