我有一些代码,例如:
<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”类的搜索框。
所以我想从按钮正上方的文本框中获取文本。
有人能帮我一下吗?