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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。