作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在阅读“Web Components mit Polymer”一书,并尝试了书中的以下代码:
<!doctype html>
<html>
<body>
<template id="tpl">
<h1 class="title"></h1>
<div class="body"></div>
</template>
<script>
var tplContent = document.getElementById("tpl").content;
var node = tplContent.importNode(true);
node.querySelector("h1").textContent = "Hallo Welt";
node.querySelector("div").textContent = "Ich komme aus einem Template";
document.body.appendChild(node);
</script>
</body>
</html>
但我只是在第二个 JS 行中停止了错误:
Uncaught TypeError: tplContent.importNode is not a function
我在 Ubuntu 上使用 Google Chrome 版本 63.0.3239.84。有人可以帮我处理这个订单吗?
问候,阿图尔
最佳答案
你这里有错误:
var node = tplContent.importNode(true);
tpl
没有函数 importNode()
如果你想使用importNode :
var node = document.importNode(tplContent, true);
<!doctype html>
<html>
<body>
<template id="tpl">
<h1 class="title"></h1>
<div class="body"></div>
</template>
<script>
var tplContent = document.getElementById("tpl").content;
var node = document.importNode(tplContent, true);
node.querySelector("h1").textContent = "Hallo Welt";
node.querySelector("div").textContent = "Ich komme aus einem Template";
document.body.appendChild(node);
</script>
</body>
</html>
关于javascript - 未捕获的 TypeError : tplContent. importNode 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47915257/
我正在阅读“Web Components mit Polymer”一书,并尝试了书中的以下代码: var tplContent = document.getEl
我是一名优秀的程序员,十分优秀!