91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

js 判斷數據類型的幾種方法

發布時間:2020-08-30 06:22:02 來源:腳本之家 閱讀:167 作者:天然呆☆☆ 欄目:web開發

判斷js中的數據類型有一下幾種方法:typeof、instanceof、 constructor、 prototype、 $.type()/jquery.type(),接下來主要比較一下這幾種方法的異同。

先舉幾個例子:

var a = "iamstring.";
var b = 222;
var c= [1,2,3];
var d = new Date();
var e = function(){alert(111);};
var f = function(){this.name="22";};  

1、最常見的判斷方法:typeof

alert(typeof a)  ------------> string
alert(typeof b)  ------------> number
alert(typeof c)  ------------> object
alert(typeof d)  ------------> object
alert(typeof e)  ------------> function
alert(typeof f)  ------------> function

其中typeof返回的類型都是字符串形式,需注意,例如:

alert(typeof a == "string") -------------> true
alert(typeof a == String) ---------------> false

另外typeof 可以判斷function的類型;在判斷除Object類型的對象時比較方便。 

2、判斷已知對象類型的方法: instanceof

alert(c instanceof Array) ---------------> true
alert(d instanceof Date)
alert(f instanceof Function) ------------> true
alert(f instanceof function) ------------> false

注意:instanceof 后面一定要是對象類型,并且大小寫不能錯,該方法適合一些條件選擇或分支。   

3、根據對象的constructor判斷: constructor

alert(c.constructor === Array) ----------> true
alert(d.constructor === Date) -----------> true
alert(e.constructor === Function) -------> true

注意: constructor 在類繼承時會出錯

eg:

   function A(){};
   function B(){};
   A.prototype = new B(); //A繼承自B
   var aObj = new A();
   alert(aobj.constructor === B) -----------> true;
   alert(aobj.constructor === A) -----------> false;

而instanceof方法不會出現該問題,對象直接繼承和間接繼承的都會報true:

   alert(aobj instanceof B) ----------------> true;
   alert(aobj instanceof B) ----------------> true;

言歸正傳,解決construtor的問題通常是讓對象的constructor手動指向自己:

   aobj.constructor = A; //將自己的類賦值給對象的constructor屬性
   alert(aobj.constructor === A) -----------> true;
   alert(aobj.constructor === B) -----------> false; //基類不會報true了;

4、通用但很繁瑣的方法: prototype

alert(Object.prototype.toString.call(a) === ‘[object String]') -------> true;
alert(Object.prototype.toString.call(b) === ‘[object Number]') -------> true;
alert(Object.prototype.toString.call(c) === ‘[object Array]') -------> true;
alert(Object.prototype.toString.call(d) === ‘[object Date]') -------> true;
alert(Object.prototype.toString.call(e) === ‘[object Function]') -------> true;
alert(Object.prototype.toString.call(f) === ‘[object Function]') -------> true;

大小寫不能寫錯,比較麻煩,但勝在通用。

5、無敵萬能的方法:jquery.type()

如果對象是undefined或null,則返回相應的“undefined”或“null”。

jQuery.type( undefined ) === "undefined"
jQuery.type() === "undefined"
jQuery.type( window.notDefined ) === "undefined"
jQuery.type( null ) === "null"

如果對象有一個內部的[[Class]]和一個瀏覽器的內置對象的 [[Class]] 相同,我們返回相應的 [[Class]] 名字。 (有關此技術的更多細節。 )

jQuery.type( true ) === "boolean"
jQuery.type( 3 ) === "number"
jQuery.type( "test" ) === "string"
jQuery.type( function(){} ) === "function"
jQuery.type( [] ) === "array"
jQuery.type( new Date() ) === "date"
jQuery.type( new Error() ) === "error" // as of jQuery 1.9
jQuery.type( /test/ ) === "regexp"

其他一切都將返回它的類型“object”。

通常情況下用typeof 判斷就可以了,遇到預知Object類型的情況可以選用instanceof或constructor方法,實在沒轍就使用$.type()方法。

以上就是本文的全部內容,希望本文的內容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持億速云!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

鄂托克旗| 资源县| 博客| 霍邱县| 二连浩特市| 芜湖县| 克拉玛依市| 海林市| 龙岩市| 吴江市| 宿迁市| 临汾市| 堆龙德庆县| 什邡市| 鞍山市| 神农架林区| 扎兰屯市| 浠水县| 客服| 镇江市| 南城县| 长沙市| 梁平县| 武定县| 巴里| 凤城市| 山西省| 广饶县| 利辛县| 浮山县| 探索| 扶绥县| 黄冈市| 临江市| 佛学| 神农架林区| 虞城县| 苏尼特左旗| 涞源县| 英吉沙县| 石阡县|