HTML DOM Ins 객체
- 이전 페이지 <img>
- 다음 페이지 <input> 버튼
Ins 객체
Ins 객체는 HTML <ins> 요소를 나타냅니다.
Ins 객체 접근
getElementById()를 사용하여 <ins> 요소에 접근할 수 있습니다:
var x = document.getElementById("myIns");
Ins 객체 생성
document.createElement() 메서드를 사용하여 <ins> 요소를 생성할 수 있습니다:
var x = document.createElement("INS");
- 이전 페이지 <img>
- 다음 페이지 <input> 버튼