목차
<caption> 객체 정의 - 테이블 제목
<caption> 객체 구문
<caption> 객체 예제 - 접근
<caption> 객체 예제 - 생성
<caption> 객체 속성
<caption> 객체 정의 - 테이블 제목
HTML <caption> 태그(요소) 의미.
<caption> 객체 구문
[접근]
var x = document.getElementById ("요소ID");
[생성]
var x = document.createElement ("CAPTION");
※ Table 객체의 createCaption() 메서드 이용해 Caption 요소 생성 가능.
<caption> 객체 예제 - 접근
<style>
table, th, td {border: 1px solid black; border-collapse:collapse;}
</style>
<table>
<caption id="hz">Homzzang.com</caption>
<tr>
<th>코딩언어</th>
<th>역할</th>
</tr>
<tr>
<td>HTML</td>
<td>기본틀</td>
</tr>
<tr>
<td>CSS</td>
<td>디자인</td>
</tr>
</table>
<button onclick="homzzang()">클릭</button>
<script>
function homzzang() {
var x = document.getElementById("hz");
x.style.color = "red";
}
</script>
결과보기
<caption> 객체 예제 - 생성
<style>
table, th, td {
border: 1px solid black;
border-collapse:collapse;
}
</style>
<table id="hz">
<tr>
<th>코딩언어</th>
<th>역할</th>
</tr>
<tr>
<td>HTML</td>
<td>기본틀</td>
</tr>
<tr>
<td>CSS</td>
<td>디자인</td>
</tr>
</table>
<button onclick="homzzang()">클릭</button>
<script>
function homzzang() {
var x = document.createElement("CAPTION");
var t = document.createTextNode("Homzzang.com");
x.appendChild(t);
var table = document.getElementById("hz")
table.insertBefore(x, table.childNodes[0]);
}
</script>
결과보기
<caption> 객체 속성
align
HTML5 지원 X. 대신 style.textAlign 또는 style.captionSide 속성 사용. 캡션의 정렬 설정/반환.
※ <caption> 객체는 표준 속성/메서드 /이벤트 지원.
주소 복사
랜덤 이동