使用&&在jQuery if语句中

时间:2016-02-04 16:01:37

标签: javascript jquery

我遇到了解决这个问题的问题。这段代码适用于:

position

但是当我尝试添加&&运算符指定一个范围,我得到一个错误,说它不是一个函数:

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();
    }
}

我无法弄清楚为什么这不起作用。

1 个答案:

答案 0 :(得分:1)

这个

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

你有一个额外的),需要添加$