td:first-child").css("display", none)) { -6ren">
gpt4 book ai didi

javascript - 如果条件不成立,为什么会这样

转载 作者:行者123 更新时间:2023-12-02 14:19:48 26 4
gpt4 key购买 nike

我使用了这样的 if 条件

if (!$("tr[data-id='" + currenttrid + "'] > td:first-child").css("display", none)) {
$("tr[data-id='" + parrentid + "'] > td:first-child button").addClass("collapse")
}

但没有考虑我如何重新安排此代码

最佳答案

您需要获取显示属性,但您正在 if 条件内设置它。

使用.css("display")代替.css("display", none)

 if ($("tr[data-id='" + currenttrid + "'] > td:first-child").css("display")!="none" ) {
$("tr[data-id='" + parrentid + "'] > td:first-child button").addClass("collapse")
}

关于javascript - 如果条件不成立,为什么会这样,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38735443/

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