목차
<strong> 객체 정의 - 굵은 글씨
<strong> 객체 구문
<strong> 객체 예제 - 접근
<strong> 객체 예제 - 생성
<strong> 객체 속성
<strong> 객체 정의 - 굵은 글씨
HTML <strong> 태그(요소) 의미.
<strong> 객체 구문
[접근]
var x = document.getElementById ("요소ID");
[생성]
var x = document.createElement ("STRONG");
<strong> 객체 예제 - 접근
<p>홈짱닷컴 <strong id="hz">Homzzang.com</strong></p>
<button onclick="homzzang()">클릭</button>
<script>
function homzzang() {
var x = document.getElementById("hz");
x.style.color = "red";
}
</script>
결과보기
<strong> 객체 예제 - 생성
<button onclick="homzzang()">클릭</button>
<script>
function homzzang() {
var x = document.createElement("STRONG");
var t = document.createTextNode("Homzzang.com");
x.appendChild(t);
document.body.appendChild(x);
}
</script>
결과보기
<strong> 객체 속성
고유 속성 없음.
※ <strong> 객체는 표준 속성/메서드 /이벤트 지원.
주소 복사
랜덤 이동