码迷,mamicode.com
首页 > 其他好文 > 详细

angular中的ng-disabled

时间:2016-11-10 19:15:26      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:--   console   utf-8   mil   tin   []   内容   html   als   

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script src="angular-1.5.8.js"></script>
</head>
<body ng-app="mainApp" ng-controller="ngController">
<input type="text" ng-disabled="isDisabled"/>
</body>
<script>
var count=2;
angular.module("mainApp",[])
.controller("ngController",function($scope){
$scope.isDisabled=true;
var timed=setInterval(function(){
count--;
console.log(count);
if(count<0){
$scope.isDisabled=false;
$scope.$apply();
clearInterval(timed);
}
},3000)
})
//这是ng-disabled的用法;就是当注释文本框(不能再输入内容)-true,是false就是可以输入内容;
</script>
</html>

angular中的ng-disabled

标签:--   console   utf-8   mil   tin   []   内容   html   als   

原文地址:http://www.cnblogs.com/liubaichi/p/6051959.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!