ではありません。キャッチされない例外TypeErrorは:tplContent.importNodeは、私は本からの次のコードを著書「WebコンポーネントMITポリマー」を読んでみましたよ機能
<!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を使用しています。 誰かがこのお手伝いできますか?
よろしく、 アルトゥル