gpt4 book ai didi

javascript - 在 jQuery if 语句中使用 &&

转载 作者:行者123 更新时间:2023-12-03 07:45:59 25 4
gpt4 key购买 nike

我在使其正常工作时遇到问题。此代码在这里有效:

if ($('.test').is(':visible')) {
if ($('.test').val() >= 1 )) {
$(".test .section").show();
$("#something").hide();
} else {
$(".test .section").hide();
}
}

但是当我尝试添加 && 运算符来指定范围时,我收到一条错误消息,指出它不是函数:

if ($('.test').is(':visible')) {
if ($('.test').val() >= 1 && ('.test').val() <= 100)){
$(".test .section").show();
$("#something").hide();
} else {
$(".test .section").hide();
}
}

我也尝试过:

if ($(('.test').val() >= 1) && (('.test').val() <= 100)))

我不明白为什么这不起作用。

最佳答案

这个

if(($('.test').val() >= 1) && ($('.test').val() <= 100))

您有一个额外的 ) 并需要添加 $

关于javascript - 在 jQuery if 语句中使用 &&,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35205748/

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