- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
td:first-child").css("display", none)) { -6ren">
我使用了这样的 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/
我在玩弄模板并尝试实现以下助手。 first_constructible::type 这将返回第一种 Types可从 Args... 构建.第一个问题显然是在 struct 中有两个参数包,所以我将用
我正在我的 Kotlin 项目中实现 RxJava。将从 Java 到 Kotlin 的自动翻译应用到以下代码: @Override protected void onCreate(Bundle sa
这个问题在这里已经有了答案: Comparing String to Integer gives strange results (5 个答案) 关闭 9 年前。 下面代码的输出是“失败”,但如果我
Deno & Node.js 作者 Ryan Dahl 和联合创始人 Bert Belder 宣布成立了 Deno 公司。 Ryan Dahl 和 Bert Belder 在博客中阐述
我最近参加了一个代码力量竞赛。在比赛的编辑部分,我看到了按位运算符之间的一种美妙关系,即 x + y = x & y + x |是的我还不知道证据。我拿了几个数字来看看这个等式是否正确。我很高兴知道这
我是一名优秀的程序员,十分优秀!