jQuery - 通过parents()从不同表中的按钮触发表元素的切换

发布于 2024-10-31 00:10:20 字数 273 浏览 1 评论 0原文

我试图在单击位于不同表格中的按钮时切换(隐藏/显示)表格,但无法正确选择它。 我故意留下了 id 标签,因为我希望 jQuery 代码是通用的,因为我需要在同一脚本中多次重用它。

这是我到目前为止所得到的:

http://jsfiddle.net/Argoron/Dp2sk/24/

<代码>

I'm trying to toggle (hide/show) a table when clicking a button which is located in a different table, but have trouble selecting it correctly.
I intentionnally left id tags out, as I want the jQuery code to be generic because I'll need to reuse it various times in the same script.

here is where I have got so far:

http://jsfiddle.net/Argoron/Dp2sk/24/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

街角卖回忆 2024-11-07 00:10:21
 $(document).ready(function() {

    $('button.new_disp').toggle(
    function() {
        $(this).closest('table').next('table').hide();
        $(this).text('Show');
    }, function() {
      debugger;
        $(this).closest('table').next('table').show();
        $(this).text('Hide');
    });        
 });
 $(document).ready(function() {

    $('button.new_disp').toggle(
    function() {
        $(this).closest('table').next('table').hide();
        $(this).text('Show');
    }, function() {
      debugger;
        $(this).closest('table').next('table').show();
        $(this).text('Hide');
    });        
 });
最冷一天 2024-11-07 00:10:21

试试这个:

来自 td ->获取第一个父表table ->获取下一个同级 ->显示/隐藏:

$('button.new_disp').toggle(

function() {
    $(this).parents('table').next('table').hide();
    $(this).text('Show');
}, function() {
    $(this).parents('table').next('table').show();
    $(this).text('Hide');
});

Try this:

From td -> get first parent table -> get next sibling table -> show/hide:

$('button.new_disp').toggle(

function() {
    $(this).parents('table').next('table').hide();
    $(this).text('Show');
}, function() {
    $(this).parents('table').next('table').show();
    $(this).text('Hide');
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文