1. ホーム
  2. jquery

[解決済み] jQueryのセレクタで:notを使って$(this)以外を隠す

2023-01-05 03:12:49

質問

高度なタイトル、シンプルな質問。

jQueryで次のようにするにはどうしたらよいでしょうか( $(this) )?

$("table tr").click(function() {
    $("table tr:not(" + $(this) + ")").hide();
    // $(this) is only to illustrate my problem

    $("table tr").show();
});

どのように解決するのですか?

$(this).siblings().hide();

トラバシング/兄弟