jQuery - 如何写'如果不等于'(与==相反)

时间:2011-06-30 18:34:17

标签: jquery

我需要反转以下代码。如果宽度不是500px,我该如何使动画运行。

$(".image-div").not(this).each(function() {
        if ($(this).css('width') == '500px') {
            $(this).animate({
                    width: '250px'
                }, 500, function() {
                // Animation complete.
            });
        }


    });

换句话说,与此相反的是什么?:==

谢谢

4 个答案:

答案 0 :(得分:77)

==比较运算符的反面是!=

答案 1 :(得分:32)

== => !=

=== => !==

等于及其相反

答案 2 :(得分:17)

!=

例如,

if ("apple" != "orange")
  // true, the string "apple" is not equal to the string "orange"

意味着没有。另见the logical operators list。此外,当您看到三个字符时,它是type sensitive comparison。 (例如if (1 === '1') [不等于])

答案 3 :(得分:2)

if ("one" !== 1 )

评估为true,字符串"one"不等于数字1