美文网首页
Javascript类型检测

Javascript类型检测

作者: 夜之海澜 | 来源:发表于2019-03-04 16:25 被阅读0次
    • typeof
      适合基本类型及function检测,遇到null失效。
    • [[class]]
      通过{}.toString拿到,适合内置对象和基元类型,遇到null和undefined失效(IE678等返回[object Object])。
    • instanceof
      适合自定义对象,也可以用来检测原生对象,在不同iframe和window间检测时失效。

    相关文章

      网友评论

          本文标题:Javascript类型检测

          本文链接:https://www.haomeiwen.com/subject/bjuiuqtx.html