Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

HTML <template> 标签


示例

使用 <template> 来保存一些在页面加载时将隐藏的内容。使用 JavaScript 显示它

<button onclick="showContent()">显示隐藏的内容</button>

<template>
  <h2>花朵</h2>
  <img src="img_white_flower.jpg" width="214" height="204">
</template>

<script>
function showContent() {
  let temp = document.getElementsByTagName("template")[0];
  let clon = temp.content.cloneNode(true);
  document.body.appendChild(clon);
}
</script>
试试看 »

以下有更多“试试看”示例。


定义和用法

The <template> 标签用作容器,用于保存一些在页面加载时对用户隐藏的 HTML 内容。

The content inside <template> 可以使用 JavaScript 稍后渲染。

如果您有一些 HTML 代码想要反复使用,但直到您请求它才使用,您可以使用 <template> 标签。 要做到这一点 *没有* <template> 标签,您必须使用 JavaScript 创建 HTML 代码以防止浏览器渲染代码。


浏览器支持

元素
<template> 26.0 13.0 22.0 8.0 15.0

全局属性

The <template> 标签支持 HTML 中的全局属性



更多示例

示例

为数组中的每个项目填充一个新的 div 元素到网页中。每个 div 元素的 HTML 代码都在模板元素中

<template>
  <div class="myClass">我喜欢: </div>
</template>

<script>
let myArr = ["奥迪", "宝马", "福特", "本田", "捷豹", "日产"];
function showContent() {
  let temp, item, a, i;
  temp = document.getElementsByTagName("template")[0];
  item = temp.content.querySelector("div");
  for (i = 0; i < myArr.length; i++) {
    a = document.importNode(item, true);
    a.textContent += myArr[i];
    document.body.appendChild(a);
  }
}
</script>
试试看 »

示例

检查浏览器对 <template> 的支持

<script>
if (document.createElement("template").content) {
  document.write("您的浏览器支持模板!");
} else {
  document.write("您的浏览器不支持模板!");
}
</script>
试试看 »

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.