欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

判断js数据类型的函数实例详解

程序员文章站 2023-12-19 21:45:28
function judgetype(change) { if (arguments.length == 0) { return '0';/...
function judgetype(change) {
    if (arguments.length == 0) {
      return '0';//无参数传入
    }
    if (change === null) {
      return 'null'
    }
    if (change === undefined && arguments.length > 0) {
      return 'undefined'
    }
    if (change instanceof function) {
      return 'function'
    }
    if (change instanceof array) {
      return 'arry'
    }
    if (change instanceof number || typeof change == 'number') {
      return 'number'
    }
    if (change instanceof string || typeof change == 'string') {
      return 'string'
    }
    if (change instanceof boolean || typeof change == 'boolean') {
      return 'boolean'
    }
  }

ps:下面看下js 判断各种数据类型

了解js的都知道, 有个typeof  用来判断各种数据类型,有两种写法:typeof   xxx   ,typeof(xxx)

       如下实例:

 typeof  2   输出  number
    typeof  null  输出  object
    typeof  {}  输出  object
    typeof  []  输出  object
    typeof  (function(){})  输出 function 
    typeof  undefined     输出 undefined
    typeof  '222'         输出  string 
   typeof true          输出   boolean 

    这里面包含了js里面的五种数据类型  number   string    boolean   undefined     object和函数类型 function

     看到这里你肯定会问了:我怎么去区分对象,数组和null呢?

     接下来我们就用到另外一个利器:object.prototype.tostring.call

     这是对象的一个原生原型扩展函数,用来更精确的区分数据类型。

     我们来试试这个玩儿意儿:

  var  gettype=object.prototype.tostring
    gettype.call('aaaa')    输出   [object string]
    gettype.call(2222)     输出   [object number]
    gettype.call(true)     输出   [object boolean]
    gettype.call(undefined) 输出   [object undefined]
    gettype.call(null)         输出  [object null]
     gettype.call({})          输出  [object object]
     gettype.call([])          输出  [object array]
     gettype.call(function(){})   输出  [object function]

      看到这里,刚才的问题我们解决了。

     constructor也能判断数据类型:

     如:

''.constructor==string   
      [].constructor==array
      var obj= new object()  
  obj.constructor==object

      其实js 里面还有好多类型判断      [object htmldivelement]     div 对象  ,    [object htmlbodyelement]  body 对象    ,[object document](ie)或者  [object htmldocument](firefox,google) ......各种dom节点的判断,这些东西在我们写插件的时候都会用到。

     可以封装的方法如下  :

 var  gettype=object.prototype.tostring
   var  utility={
     isobj:function(o){
        return  gettype.call(o)=="[object object]";
     },
     isarray:function(o){
        return  gettype.call(o)=="[object array]";
     },
     isnull:function(o){
        return  gettype.call(o)=="[object null]";
     },
     isdocument:function(){
         return  gettype.call(o)=="[object document]"|| [object htmldocument];
     }
     ........
  }

    这个获取类型的方法有个简单的写法:

var type = (function() {
        var type = {};
        var typearr = ['string', 'object', 'number', 'array','undefined', 'function', 'null', 'symbol'];
        for (var i = 0; i < typearr.length; i++) {
          (function(name) {
            type['is' + name] = function(obj) {
              return object.prototype.tostring.call(obj) == '[object ' + name + ']';
            }
          })(typearr[i]);
        }
        return type;
})(); 

调用方法:type.isfunction(function() {})      type.isobject({})。。。。。

type.is.....

总结

以上所述是小编给大家介绍的判断js数据类型的函数实例详解,希望对大家有所帮助

上一篇:

下一篇: