!= null和!== null之间有什么区别?

这个问题在这里已经有了答案:

  • 在JavaScript和=== ===之间的差异[复制] 2个答案

  • 关于是否曾经有过一个涉及null !=!==比较得到不同答案的具体问题的答案

    undefined != null  // false
    undefined !== null // true
    

    ==!=的规则显式包含一个子句,它规定nullundefined是相同的。

    就个人而言 - 就是在我的代码中 - 这个事实是在undefined应该以相同方式处理(这是很常见的情况)的情况下检查null时使用!= (或== )的原因。

    链接地址: http://www.djcxy.com/p/19427.html

    上一篇: What is the difference between != null and !== null?

    下一篇: How to check a radio button with jQuery?