Load HTML Widget with template Tag
通过AJAX从服务器获取类似于下面这样的内容。
<template>
<p>Hello</p>
</template>
<style>
p {
color:red;
}
</style>
<script>
var this_tag = document.currentScript;
</script>
把内容注入到当前页面中。
var tpl = document.querySelector('#template'),
var clone = document.importNode(tpl.content, true);
document.body.appendChild(clone);