gpt4 book ai didi

javascript - 如何从输入框获取文本到跨度

转载 作者:太空宇宙 更新时间:2023-11-04 16:05:12 25 4
gpt4 key购买 nike

我有 HTML,但我不确定如何将输入框放入 span 中。我尝试使用 document.getElementById 但这没有用。任何帮助都会很棒!

Name:
<p>
<input type="text" name="fname" id="name">
<p>
<button id= "button" onclick="namejs">Go</button>
<p>
<span id= "namespan">Name</span>

最佳答案

你可以试试下面的,这是普通的 Javascript获取可以使用的值

document.getElementById("myspan").innerHTML="value";

对于现代浏览器

document.getElementById("myspan").textContent="value";

代码

Name:
<p>
<input type="text" name="fname" id="name">
<p>
<button id= "button" onclick="myFunction()">Go</button>
<p>
<span id="namespan">Name</span>

function myFunction() {
var name = document.getElementById("name").value;
document.getElementById("namespan").textContent=name;
}

添加了一个 fiddle

关于javascript - 如何从输入框获取文本到跨度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38681566/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com