gpt4 book ai didi

javascript - 单击按钮时如何从其上方的文本框中获取文本

转载 作者:行者123 更新时间:2023-11-28 13:47:08 27 4
gpt4 key购买 nike

我有一些代码,例如:

<input type="text" class="searchpersontxtbox" />
<input type="button" value="Find" class="findpersonbtn btn" disabled="disabled" />

有一个按钮点击事件:

$(document).ready(function () {

$('.findpersonbtn').click(function () {

var findpersonbutton = $(this);

var searchbox = $(this).closest('.searchpersontxtbox');
alert(show the searchbox text here);

});
});

因此,当单击按钮时,我尝试获取搜索框中的文本并将其提醒到屏幕。

需要注意的一点是,页面上可能有多个具有“searchpersontxtbox”类的搜索框。

所以我想从按钮正上方的文本框中获取文本。

有人可以帮我吗?

最佳答案

我认为他正在寻找相关的东西......就像这样......

$(document).ready(function(){ 

$('.findpersonbtn ').click(function () {
var findpersonbutton = $(this);

//do relative search here...
var searchbox = findpersonbutton.parent().find('.searchpersontxtbox');
alert(searchbox.val());

});

});

关于javascript - 单击按钮时如何从其上方的文本框中获取文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13485205/

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