处理表内的 jQuery 单击事件

发布于 2024-12-11 22:58:53 字数 64 浏览 0 评论 0原文

我有一张表,其中包含几行,每行包含一个按钮和一个文本框。

使用文本框值触发警报的最简单方法是什么?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

云归处 2024-12-18 22:58:53

您可以将单击处理程序绑定到按钮,该按钮会向上遍历 DOM 到其包含的 ,然后从那里找到文本框:

// Bind a click handler to all buttons in the table...
$('table :button').click(function () {

  var text = $(this)    // "this" is the button which was clicked
    .closest('tr')      // find the <tr> which contains it...
    .find(':text')      // find the text box within that <tr>...
    .val();             // and get its value

  alert(text);
});

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:

// Bind a click handler to all buttons in the table...
$('table :button').click(function () {

  var text = $(this)    // "this" is the button which was clicked
    .closest('tr')      // find the <tr> which contains it...
    .find(':text')      // find the text box within that <tr>...
    .val();             // and get its value

  alert(text);
});
水波映月 2024-12-18 22:58:53

如果文本输入和按钮是连续的唯一两个 (),那么您可以使用如下事件处理程序:

$('#table_id').delegate('a', function () {
    alert($(this).closest('tr').find('input[type="text"]').val());
});

如果按钮是表单元素,您可以替换'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:

$('#table_id').delegate('a', function () {
    alert($(this).closest('tr').find('input[type="text"]').val());
});

If the button is a form element, you can replace the 'a' selector with 'input[type="button"]'.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文