angular.isDate()函数AngularJS中的in用来确定date的值是否有效。如果引用是日期, 则返回true, 否则返回false。
语法如下:
angular.isDate( value )
参数:该函数接受单个参数值存储日期对象。
返回值:如果传递的值为日期, 则返回true, 否则返回false。
例子:本示例使用angular.isDate()函数确定date的值是否有效。
<!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" >lsbin</ h1 >
< h2 >angular.isDate()</ h2 >
< div ng-controller = "geek" >
< b >Date:</ b > {{ date }} < br >< br >
isDate: {{isDate}}
</ div >
<!-- Script to uses angular.isDate() function -->
< 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 >
输出如下: