实例
使用 <template> 保留页面加载时隐藏的内容。使用 JavaScript 来显示:
<button οnclick="showContent()">显示被隐藏的内容</button> <template> <h2>Flower</h2> <img src="img_white_flower.jpg" width="214" height="204"> </template> <script> function showContent() { var temp = document.getElementsByTagName("template")[0]; var clon = temp.content.cloneNode(true); document.body.appendChild(clon); } </script>
页面下方有更多 TIY 实例。
定义和用法
<template>
标记用作容纳页面加载时对用户隐藏的 HTML 内容的容器。
<template>
中的内容可以稍后使用 JavaScript 呈现。
如果您有一些需要重复使用的 HTML 代码,则可以使用 <template>
标记。如果在没有 <template>
标记的情况下执行此操作,必须使用 JavaScript 创建 HTML 代码,以防止浏览器呈现这些代码。
浏览器支持
元素 | Chrome | IE | Firefox | Sa |
---|