Posts /

HTML: < template > 태그

Twitter Facebook Google+
02 Sep 2018

HTML Tag : <template> 태그

<template>
  <h2>template</h2>
  <img src="template.jpg">
</template>

template 태그란?

template 태그는 클라이언트에서 숨겨진 내용을 보유합니다. template 태그 안의 내용은 렌더링되지 않습니다. 내용은 JavaScript를 사용하여 나중에 보거나 렌더링 할 수 있습니다.

반복적으로 사용할 HTML 코드가있을 때


Twitter Facebook Google+