Bài 11 Sử dụng kiểu Datetime-local với thẻ input trong AngularJS như thế nào?

Lượt xem: 4675

Xem demo

Để trả lời cho câu hỏi này chúng ta cùng tìm hiểu ví dụ sau:

 <html>  
   <head>  
    <title>Sử dụng kiểu Datetime-local trong AngularJS</title>  
     <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script>  
     <script>  
       angular.module('MyForm', [])  
           .controller('myController', ['$scope', function($scope) {  
          $scope.valuedatelocal = new Date();  
       }]);  
     </script>  
   </head>  
   <body ng-app="MyForm">  
           <br />  
            <input type="datetime-local" name="input" ng-model="valuedatelocal"  
               min="2014-01-01T00:00:00" max="2014-12-31T00:00:00" required /> <br /> 
   </body>  
 </html> 

Xem thêm: Bài 12 Sử dụng ng-show và ng-hide trong AngularJS như thế nào?

Xem demo