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


underscore.js _.isDate()用法及代码示例


Underscore.js是一个JavaScript库,它具有足够的能力来非常轻松,高效地处理数组,字符串,对象,映射和设置。 underscore.js中的_.isDate()函数用于判断给定对象是否为日期对象。

用法:

_.isDate(object);

参数:它仅采用一个参数,即对象。

返回:该函数返回一个布尔值。值为true表示对象是日期对象,否则为false。

注意:在通过代码直接在浏览器中使用此代码之前,请链接下划线CDN。



范例1:

<!DOCTYPE html>  
<html>  
  <head>  
    <script src =   
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >  
    </script>  
   </head>  
  <body> 
    <script> 
      let date=new Date() 
      let str="9/9/9"; 
      console.log(_.isDate(date)); 
      console.log(_.isDate(str)); 
    </script> 
  </body>  
</html>

输出:

范例2:

<!DOCTYPE html>  
<html>  
  <head>  
    <script src =   
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >  
    </script>  
   </head>  
  <body> 
    <script> 
      let date1=new Date(); 
      let date2="09-jan-1888" 
      let boolDate1=_.isDate(date1); 
      let boolDate2=_.isDate(date2); 
      if(boolDate1) 
      console.log( 
`_.isDate function returns ${boolDate1} \n date is:  ${date1}`) 
      else 
      console.log( 
`_.isDate function returns ${boolDate1}  
\n ${data1} is not a date object`) 
      if(boolDate2) 
      console.log( 
`_.isDate function returns ${boolDate2} \n date is ${date2}`) 
      else 
      console.log( 
`_.isDate function returns ${boolDate2}  
\n ${date2} is not a date object`) 
    </script> 
  </body>  
</html>

输出:




相关用法


注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 Underscore.js _.isDate() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。