W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
該參數(shù)是否一個(gè)正則表達(dá)式
$.type() 函數(shù)用于確定JavaScript內(nèi)置對(duì)象的類型,并返回小寫形式的類型名稱。
如果對(duì)象是undefined或null,則返回相應(yīng)的"undefined"或"null"
$.type( undefined ) === "undefined" $.type() === "undefined" $.type( window.notDefined ) === "undefined" $.type( null ) === "null"
如果對(duì)象有一個(gè)內(nèi)部屬性[[Class]]和一個(gè)瀏覽器的內(nèi)置對(duì)象的 [[Class]] 相同,我們返回相應(yīng)的 [[Class]] 名字。
$.type( true ) === "boolean" $.type( 3 ) === "number" $.type( "test" ) === "string" $.type( function(){} ) === "function" $.type( [] ) === "array" $.type( new Date() ) === "date" $.type( new Error() ) === "error" // jQuery 1.9 新增支持 $.type( /test/ ) === "regexp"
參數(shù) | 描述 |
---|---|
obj | 任意類型 需要確定類型的任意對(duì)象。 |
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: