gpt4 book ai didi

javascript - jquery 无法记录输入值

转载 作者:行者123 更新时间:2023-12-03 04:40:25 27 4
gpt4 key购买 nike

HTML:

<div id="Background">
<input id="search-Bar" type="text">
<button id="SearchButton">Search</button>
</div>

var name = $("#search-Bar").val();
$("#SearchButton").on("click", function() {
console.log(name);
});

我正在尝试使用 .val() 获取输入的值,但是当我控制台日志时,它每次都显示为空白,有人可以告诉我如何解决这个问题吗?

最佳答案

$("#SearchButton").on("click", function() {
var name = $("#search-Bar").val(); //this should be here

console.log(name);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="Background">
<input id="search-Bar" type="text">
<button id="SearchButton"> Search </button>

关于javascript - jquery 无法记录输入值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43114338/

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