次のコードは、ボタンHey girls!
を押したときに段落の後にテキスト入力フィールドを作成します。push
<html>
<head>
<script>
function func()
{
var elem=document.createElement("input");
document.body.appendChild(elem);
elem.setAttribute('type','text');
}
</script>
</head>
<body>
<p>Hey guys!<p>
<input type="button" value="push" onclick="func()"/>
<script>
func();
</script>
<p>Hey girls!<p>
</body>
</html>
Hey girls!
テキスト入力フィールドが段落の前と段落の後に作成されるようにするにはどうすればよいHey guys!
ですか?