2 回答
TA贡献1871条经验 获得超13个赞
你可以这样做:
const submitFunc = () => {
const value = document.getElementById('name').value;
const parent = document.createElement('div');
const pTag = document.createElement('p');
pTag.innerText = value;
parent.appendChild(pTag);
document.body.appendChild(parent);
}
<button onclick="submitFunc()">Submit</button>
<input placeholder="Enter Name Here" id="name">
TA贡献1858条经验 获得超8个赞
如果你想将其显示为 H1 元素,你可以执行以下操作
const submitFunc = () => {
const value = document.getElementById('name').value;
const parent = document.createElement('div');
const hTag = document.createElement('h1');
var node = document.createTextNode(value);
hTag.appendChild(node);
parent.appendChild(pTag);
document.body.appendChild(parent);
}
这是要使用的标记。
<button onclick="submitFunc()">Submit</button>
<input placeholder="Enter Name Here" id="name">
- 2 回答
- 0 关注
- 98 浏览
添加回答
举报