최신 웹 개발 튜토리얼
 

메타 httpEquiv 부동산

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

의 정보에 대한 HTTP 헤더를 돌려 content 속성 :

var x = document.getElementsByTagName("META")[0].httpEquiv;

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

content-type
»그것을 자신을 시도

정의 및 사용

httpEquiv 속성 세트 또는은의 정보에 대한 HTTP 헤더를 반환 content 속성을.

http-equiv 속성은 HTTP 응답 헤더를 시뮬레이션하기 위해 사용될 수있다.

의 값은 http-equiv 속성의 값에 따라 content 속성입니다.

참고 : 경우 name 속성이 설정되면, http-equiv 속성을 설정할 수 없습니다.


브라우저 지원

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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


통사론

httpEquiv 속성을 반환합니다 :

metaObject .httpEquiv

httpEquiv 속성을 설정 :

metaObject .httpEquiv=HTTP-header

일부 일반적으로 사용되는HTTP 헤더 값은 다음과같습니다 :

Value Description
content-type Specifies the character set for the contents of the document.

Tip:It is recommended to always specify the character set.

Example:

<meta http-equiv="content-type" content="text/html; charset=UTF-8">

default-style Specifies the preferred style sheet to use.

Example:

<meta http-equiv="default-style" content=" the documents preferred stylesheet ">

Note: The value of the content attribute above must match the value of the ttitle attribute on a link element in the same document, or it must match the value of the title attribute on a style element in the same document.

refresh Defines a time interval for the document to refresh itself.

Example:

<meta http-equiv="refresh" content="300">

Note: The value "refresh" should be used carefully, as it takes the control of a page away from the user. Using "refresh" will cause a failure in W3C's Web Content Accessibility Guidelines .

반환 값

Type Description
String Information about the HTTP response message header

더 예

가 http-당량 및 콘텐츠 속성의 값을 변경합니다. 다음은 문서를 30 초마다 새로 고쳐집니다 :

document.getElementsByTagName("META")[0].httpEquiv = "refresh";
document.getElementsByTagName("META")[0].content = "30";
»그것을 자신을 시도

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