如何通过按钮单击侦听器来调用和呈现模板

时间:2017-10-15 16:16:45

标签: javascript templates

我在html中创建了一个模板,我想通过使用按钮点击监听器来调用它。任何的想法?    HTML

<template id="tem">
 <p>hi </p>
 </template>

1 个答案:

答案 0 :(得分:1)

const templateElement = document.getElementById("tem");
const templateCopy = document.importNode(templateElement.content, true);
// insert
document.body.appendChild(templateCopy);