<input kendo-date-time-picker ng-model="str" k-ng-model="obj" style="width: 100%;" />
angular.module("KendoDemos", [ "kendo.directives" ]) .controller("MyCtrl", function($scope){ $scope.str="2016-06-02 01:00:00";//若果 $scope.str=6/2/2016 1:00:00 AM 则无法绑定到控件 , 坑 $scope.getType = function(x) { return typeof x; }; $scope.isDate = function(x) { return x instanceof Date; }; })
时间: 2024-10-26 17:06:18