gpt4 book ai didi

javascript - 在 HTML 中显示值

转载 作者:行者123 更新时间:2023-11-28 11:20:51 25 4
gpt4 key购买 nike

我想将搜索栏中的值显示到“”的搜索结果中。

这就是我到目前为止所得到的,为什么它不起作用?

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<input type="text" id="autocomplete" value="" placeholder="Search for names.." title="Type in a name">
<p>
Search results for "<span id="result"></span>"
</p>

<button onclick="myname();"> Button </button>

<script>
function myname () {
document.getElementById("autocomplete").value = document.getElementById("result").innerHTML;
}
</script>
</body>
</html>

最佳答案

您想要复制的数据位于等号的右侧,您想要放置数据的位置位于等号的左侧

document.getElementById("result").innerHTML = document.getElementById("autocomplete").value;

关于javascript - 在 HTML 中显示值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50379290/

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