AngularJS angular.isDate()函数

AngularJS angular.isDate()函数

AngularJS中的angular.isDate()函数是用来确定日期的值是否有效。如果引用是一个日期,它返回true,否则false

语法:

angular.isDate( value );

参数:该函数接受一个单一参数。

  • value:它存储的是数据对象。

返回值:如果传递的值是一个日期,它将返回真,否则返回假。

示例1:本示例使用angular.isDate()函数来确定日期的值是否有效。

<!DOCTYPE html>
<html>
  
<head>
    <title>angular.isDate() function</title>
    <script src=
"//ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js">
    </script>
</head>
  
<body ng-app="app" style="text-align:center">
    <h1 style="color:green">GeeksforGeeks</h1>
    <h2>angular.isDate()</h2>
    <div ng-controller="geek">
        <b>Date:</b> {{ date }}<br>
        <br> isDate: {{isDate}}
    </div>
    <script>
        var app = angular.module("app", []);
        app.controller('geek', ['scope', function(scope) {
            scope.date = new Date;
            scope.isDate = angular.isDate($scope.date)
        }]);
    </script>
</body>
</html>

输出:

AngularJS angular.isDate()函数

例子2:这个例子通过指定不同的日期格式,在AngularJS中使用**angular.isDate()函数。

<!DOCTYPE html>
<html>
  
<head>
    <title>angular.isDate() function</title>
    <script src=
"//ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js">
    </script>
</head>
  
<body ng-app="app" 
      style="text-align: center">
    <h1 style="color: green">GeeksforGeeks</h1>
    <h2>angular.isDate()</h2>
    <div ng-controller="geek">
        <b>Date:</b> 
        {{ date | date : " MMM dd, yyyy, hh:mm:ss "}}
        <br /><br />
        isDate: {{isDate}} 
    </div>
      
    <script>
        var app = angular.module('app', []);
        app.controller('geek', ['scope',
            function(scope) {
                scope.date = new Date();
                scope.isDate = angular.isDate($scope.date);
            },
        ]);
    </script>
</body>
</html>

输出:

AngularJS angular.isDate()函数

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程