Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML DOM 메타 객체

<시간/>

HTML의 HTML DOM 메타 개체는 를 나타냅니다. 요소.

구문

다음은 구문입니다 -

생성 요소

var metaObject = document.createElement(“META”)

속성

여기, "metaObject" 다음 컬렉션 및 속성을 가질 수 있습니다 -

속성
설명
콘텐츠
의 content 속성 값을 설정/반환합니다. 요소
httpEquiv
의 콘텐츠 속성 정보에 대한 HTTP 헤더를 설정/반환합니다. 요소
이름
의 콘텐츠 속성에 있는 정보의 이름을 설정/반환합니다. 요소
구성표
컨텐츠 속성 값이 어떻게 해석되어야 하는지를 설정/반환하지만 HTML5에서는 지원하지 않습니다.

예시

HTML DOM 메타의 예를 살펴보겠습니다. 요소 -

<!DOCTYPE html>
<html>
<head>
<title>Meta Object</title>
<style>
   form {
      width:70%;
      margin: 0 auto;
      text-align: center;
   }
   * {
      padding: 2px;
      margin:5px;
   }
   input[type="button"] {
      border-radius: 10px;
   }
</style>
</head>
<body>
<form>
<fieldset>
<legend>Meta-Object</legend>
<h2>Tutorial</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua.</p>
<input type="button" onclick="createMeta()" value="Create Meta Tag">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   function createMeta(){
      var metaTag = document.createElement('META');
      metaTag.setAttribute("name", "tutorialsContent");
      metaTag.setAttribute("content", "JS tutorials");
      document.head.appendChild(metaTag);
      divDisplay.textContent = '<meta name="'+metaTag.name+'" content="'+metaTag.content+'" >';
   }
</script>
</body>
</html>

출력

이것은 다음과 같은 출력을 생성합니다 -

'메타 태그 만들기'를 클릭하기 전에 버튼 -

HTML DOM 메타 객체

'메타 태그 만들기'를 클릭한 후 버튼 -

HTML DOM 메타 객체