gpt4 book ai didi

jquery - 如何将jquery命令应用于多个div?

转载 作者:行者123 更新时间:2023-12-01 00:05:40 25 4
gpt4 key购买 nike

假设我想一次隐藏几个 div。

$("#something").click(function() {
$("#one").hide();
$("#two").hide();
$("#three").hide();
});

如何将中间三行缩短为一行?

最佳答案

$('#one, #two, #three').hide();

或者给它们一个类并立即隐藏它们

$('.class').hide();

关于jquery - 如何将jquery命令应用于多个div?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35352963/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com