テンプレートタグの使い方を模索中なのですが
まず表示する方法がよくわかりません
<head></head> <html> <header> <h1>????????</h1> </header> <body> <template id="temp1"> <div id="example"> <form name="myform" onsubmit="checkText()"> <textarea id="sinen"></textarea> <input id="sinen" type="button" value="????" method="submit" action="/sinen"></input> </form> <h3 id="sinen"><h3> <script> function checkText() { //入力ボック を const で表示 // const container = document.getElementById("container"); //const template = document.getElementById("template"); document.getElementById("sinen").innerHTML </script> </div> </template> <script> document.write("Hello world!!の1\n"); const template = document.getElementsByTagName("temp1"); //const content = template.content; document.write("Hello world!!の2"); const firstClone = template.content.cloneNode(true); document.write("Hello world!!"); document.body.appendChild(firstClone); //const example = content.getElementById('example'); </script> </body> <footer></footer> </html>
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/08/06 04:23
2021/08/06 04:25
2021/08/06 06:20