최신 웹 개발 튜토리얼
 

메타 콘텐츠 속성

메타 객체 참조 메타 오브젝트

의 값을 돌려 content 모든 메타 요소의 속성을 :

var x = document.getElementsByTagName("META");
var txt = "";
var i;
for (i = 0; i < x.length; i++) {
    txt = txt + "Content of "+(i+1)+". meta tag: "+x[i].content+"<br>";
}

TXT의 결과는 다음과 같습니다

Content of 1. meta tag: Free Web tutorials
Content of 2. meta tag: HTML5,CSS,JavaScript
Content of 3. meta tag: John Doe
»그것을 자신을 시도

정의 및 사용

콘텐츠 속성 집합 또는의 값을 반환 content 메타 요소의 속성을.

content 속성은 메타 정보의 내용을 지정한다.

참고 :이 속성의 가능한 값은의 값에 따라 이름httpEquiv의 속성.


브라우저 지원

Internet ExplorerFirefoxOperaGoogle ChromeSafari

콘텐츠 속성은 모든 주요 브라우저에서 지원됩니다.


통사론

컨텐츠 속성을 반환합니다 :

metaObject .content

콘텐츠 속성을 설정 :

metaObject .content=text

Value Description
text The content of the meta information

반환 값

Type Description
String The value of the content attribute of the meta element

더 예

의 값 변경 content 헤드의 세 번째 메타 요소 (인덱스 2)의 속성을 :

document.getElementsByTagName("META")[2].content = "Bill Mosley";
»그것을 자신을 시도

메타 객체 참조 메타 오브젝트