insertAdjacentText() 예제 - afterend 경우
<h2 id="hz">홈짱닷컴 Homzzang.com</h2> <p>HTML CSS JS JQ PHP SQL BS</p> <button onclick="homzzang()">클릭</button> <script> function homzzang() { var h = document.getElementById("hz"); h.insertAdjacentText("afterend", "홈페이지 제작관리"); } </script> 결과보기
<h2 id="hz">홈짱닷컴 Homzzang.com</h2>
<p>HTML CSS JS JQ PHP SQL BS</p>
<button onclick="homzzang()">클릭</button>
<script>
function homzzang() {
var h = document.getElementById("hz");
h.insertAdjacentText("afterend", "홈페이지 제작관리");
}
</script>
결과보기
insertAdjacentText() 정의
HTML 문자열을 지정위치에 삽입 (IE4 이상)
insertAdjacentText() 구문
node.insertAdjacentText(position, text) [매개변수] position 필수. 요소(node)에 대한 상대적 위치를 표시하는 문자열. afterbegin : 요소 시작 후 (= 첫 번째 자식으로) afterend : 요소 뒤 beforebegin : 요소 앞 beforeend : 요소 끝 이전 (= 마지막 자식으로) text 필수. 삽입할 텍스트 문자열
node.insertAdjacentText(position, text)
[매개변수]
position
필수. 요소(node)에 대한 상대적 위치를 표시하는 문자열.
afterbegin : 요소 시작 후 (= 첫 번째 자식으로)
afterend : 요소 뒤
beforebegin : 요소 앞
beforeend : 요소 끝 이전 (= 마지막 자식으로)
text
필수. 삽입할 텍스트 문자열