create
영어 [kriˈeˈt] 미국인 [kriˈet]
vt. 생산하다, 창조하다, 고귀하게 하다, 만들다... (고귀함)
vi 화를 내다 불평하다
3인칭 단수:create 현재 분사:created 과거 시제:created 과거 분사:created
caption
English [ˈkæpʃn] American [ˈkæpʃən]
n. subtitle; third File
vt.(그림, 사진 등)에 제목 추가; 3인칭 단수: captions 복수: captions 현재 분사: captioning 과거 시제: 캡션 있음 과거 분사: 캡션 있음
자바스크립트 createCaption() 메소드 통사론
기능: 테이블에 대한 캡션 요소를 만듭니다.
구문: tableObject.createCaption()
반환: 테이블의 <caption> 요소를 나타내는 HTMLElement 개체를 반환합니다. 테이블에 이미 제목이 있으면 제목을 반환합니다. 테이블에 <caption> 요소가 없으면 비어 있는 새 <caption> 요소를 만들어 테이블에 삽입하고 반환합니다.
자바스크립트 createCaption() 메소드 예
<html> <head> <script type="text/javascript"> function createCaption() { var x=document.getElementById('myTable').createCaption() x.innerHTML="My table caption" } </script> </head> <body> <table id="myTable" border="1"> <tr> <td>Row1 cell1</td> <td>Row1 cell2</td> </tr> <tr> <td>Row2 cell1</td> <td>Row2 cell2</td> </tr> </table> <br /> <input type="button" onclick="createCaption()" value="Create caption"> </body> </html>
인스턴스 실행 »
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요