當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery type()用法及代碼示例


jQuery中的type()方法用於確定對象的內部JavaScript [[Class]]。

用法:

jQuery.type( obj )

參數:type()方法僅接受上麵提到並在下麵描述的一個參數:



  • obj:此參數是獲取內部JavaScript [[Class]]的對象。

返回值:它返回字符串。

    不同的obj將對象的以下值作為字符串返回。
  • jQuery.type(true)=== “boolean”
  • jQuery.type(new Boolean())=== “boolean”
  • jQuery.type(3)=== “number”
  • jQuery.type(new Number(3))=== “number”
  • jQuery.type(undefined)=== “undefined”
  • jQuery.type() === “undefined”
  • jQuery.type(window.notDefined)=== “undefined”
  • jQuery.type(null)=== “null”
  • jQuery.type(“test”)=== “string”
  • jQuery.type(new String(“test”))=== “string”
  • jQuery.type(function() {})=== “function”
  • jQuery.type([])=== “array”
  • jQuery.type(new Array())=== “array”
  • jQuery.type(new Date())=== “date”
  • jQuery.type(new Error())=== “error”
  • jQuery.type(Symbol())=== “symbol”
  • jQuery.type(Object(Symbol()))=== “symbol”
  • jQuery.type(/test /)=== “regexp”

範例1:在此示例中,type()方法檢查參數是否為數組。

<!DOCTYPE html> 
<html> 
<head> 
<meta charset="utf-8"> 
<title>JQuery | type() method</title>  
<script src="https://code.jquery.com/jquery-3.4.1.js"></script> 
<style> 
    div { 
        color:blue; 
    } 
</style> 
</head> 
<body style="text-align:center;">  
      
    <h1 style="color:green">  
        GeeksForGeeks  
    </h1>  
      
    <h3>JQuery | type() method</h3> 
    <p> Check Whether the [] is array type:</p> 
    <b></b> 
    <script> 
    $( "b" ).append( "" + jQuery.type( [] ) === "array"); 
    </script> 
  
</body> 
</html>                                    

輸出:

範例2:在此示例中,對象的type()方法未定義或為null。

<!DOCTYPE html> 
<html> 
<head> 
<meta charset="utf-8"> 
<title>JQuery | type() method</title>  
<script src="https://code.jquery.com/jquery-3.4.1.js"></script> 
<style> 
    b { 
        color:blue; 
    } 
</style> 
</head> 
<body style="text-align:center;">  
      
    <h1 style="color:green">  
        GeeksForGeeks  
    </h1>  
      
    <h3>JQuery | type() method</h3> 
    <p> If Object is undefined or null, <br>Value return:</p> 
    <b></b> 
    <script> 
    $( "b" ).append("undefined:" + jQuery.type( undefined )+ "<br>"+ 
    "window.notDefined :" + jQuery.type(window.notDefined )+ "<br>"+ 
    "null :" + jQuery.type( null  )+ "<br>" 
    ); 
    </script> 
  
</body> 
</html>                                    

輸出:




相關用法


注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 JQuery | type() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。