处理表内的 jQuery 单击事件
我有一张表,其中包含几行,每行包含一个按钮和一个文本框。
使用文本框值触发警报的最简单方法是什么?
I have a table that contains several rows each containing one button and one textbox.
What is the simplest way to trigger alert with a textbox value?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将单击处理程序绑定到按钮,该按钮会向上遍历 DOM 到其包含的
,然后从那里找到文本框:
You can bind a click handler to the button which traverses up the DOM to its containing
<tr>
, and then finds the textbox from there:如果文本输入和按钮是连续的唯一两个 (
),那么您可以使用如下事件处理程序:
如果按钮是表单元素,您可以替换
'a'
选择器与'input[type="button"]'
。If the text-input and the button are the only two in a row (
<tr>
) then you can use an event handler like this:If the button is a form element, you can replace the
'a'
selector with'input[type="button"]'
.