Jquery 选择器 $(this).val();

发布于 2024-12-09 05:19:54 字数 713 浏览 0 评论 0原文

我想摆脱这一行:

var zzz = $(this).val();

var zzz = $(this).val();
$('li.' + zzz).show();

It 有办法做到这一点吗?

完整的代码是:

    $(document).ready(function(){

    // Add onclick handler to checkbox w/id checkme
   $("#fcheck input").click(function(){

    // If checked
    if ($("#fcheck input").is(":checked"))
    {
        //show the hidden div
        var zzz = $(this).val();
        $('li.' + zzz).show();
    }
    else
    {
        //otherwise, hide it
        var yyy = $(this).val();
        $('li.' + yyy).hide();
    }
  });

});

原因是我有多个输入,所以我不希望永远设置 var (也许我应该在每次调用后重置 if ,但我也不知道该怎么做)。

非常感谢。

I would like to get rid of the line:

var zzz = $(this).val();

in

var zzz = $(this).val();
$('li.' + zzz).show();

It there a way to do that?

The full code is:

    $(document).ready(function(){

    // Add onclick handler to checkbox w/id checkme
   $("#fcheck input").click(function(){

    // If checked
    if ($("#fcheck input").is(":checked"))
    {
        //show the hidden div
        var zzz = $(this).val();
        $('li.' + zzz).show();
    }
    else
    {
        //otherwise, hide it
        var yyy = $(this).val();
        $('li.' + yyy).hide();
    }
  });

});

The reason is that I have multiple input so I don't want the var to be set forever (maybe I should reset if after every call, but I don't know how to do that either).

Many thanks.

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

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

发布评论

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

评论(1

时光是把杀猪刀 2024-12-16 05:19:54

原因是我有多个输入,所以我不希望永远设置 var(也许我应该在每次调用后重置 if,但我也不知道该怎么做)。

从技术上讲,一旦离开该函数的范围,该变量就不会永远被设置。您可以根据 is(":checked") 结果使用 toggle() 将您的代码简化为我下面的代码,但您所拥有的应该可以正常工作。

$("#fcheck input").click(function(){
    var $this = $(this);
    $('li.' + $this.val()).toggle($this.is(":checked"));
});

The reason is that I have multiple input so I don't want the var to be set forever (maybe I should reset if after every call, but I don't know how to do that either).

Technically this variable isn't set forever once it leaves the scope of this function. You could simplify your code to what I have below using toggle() based on the is(":checked") result but what you have should work fine.

$("#fcheck input").click(function(){
    var $this = $(this);
    $('li.' + $this.val()).toggle($this.is(":checked"));
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文