gpt4 book ai didi

javascript - 使用 jQuery 设置元素可见性

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:05:43 25 4
gpt4 key购买 nike

使用 jQuery,是否可以将元素上的某些属性设置为 true/false 以控制该元素的可见性?

基本上,我需要这样的东西:

$(this).visible(someCondition);

toggle() 不会工作,因为我需要能够告诉它它是否会显示。

show()hide() 工作,但我必须这样做:

if (someCondition) {
$(this).show();
}
else {
$(this).hide();
}

如您所见,这远不如我正在寻找的解决方案优雅。

最佳答案

toggle(someCondition)将工作。
它需要一个可选的 bool 参数。

关于javascript - 使用 jQuery 设置元素可见性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8071959/

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