목차
<figure> 객체 정의 - 독립콘텐츠 표시
<figure> 객체 구문
<figure> 객체 예제 - 접근
<figure> 객체 예제 - 생성
<figure> 객체 속성
<figure> 객체 정의 - 독립콘텐츠 표시
HTML <figure> 태그(요소) 의미.
<figure> 객체 구문
[접근]
var x = document.getElementById ("요소ID");
[생성]
var x = document.createElement ("FIGURE");
<figure> 객체 예제 - 접근
<figure id="hz">
<img src="https://source.unsplash.com/random" alt="랜덤짤" width="304" height="228">
</figure>
<button onclick="homzzang()">클릭</button>
<p id="demo"></p>
<script>
function homzzang() {
var x = document.getElementById("hz").id;
document.getElementById("demo").innerHTML = x;
}
</script>
결과보기
<figure> 객체 예제 - 생성
<button onclick="homzzang()">클릭</button>
<script>
function homzzang() {
var x = document.createElement("FIGURE");
x.setAttribute("id", "hz");
document.body.appendChild(x);
var y = document.createElement("IMG");
y.setAttribute("src", "https://source.unsplash.com/random");
y.setAttribute("width", "304");
y.setAttribute("width", "228");
y.setAttribute("alt", "랜덤짤");
x.appendChild(y);
}
</script>
결과보기
<figure> 객체 속성
고유 속성 없음.
※ <figure> 객체는 표준 속성/메서드 /이벤트 지원.
주소 복사
랜덤 이동