当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。