AngularJS 启程三
Posted 拂髯客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AngularJS 启程三相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="zh_CN"> <head> <title>字数小例子</title> </head> <body ng-app="noCntAPP"> <div ng-controller="noCntCtrl"> <h2>我的笔记</h2> <textarea cols="30" rows="10" ng-model="txtArea"></textarea> <p><button>读取</button> <button>提交</button> <button>撤销</button> <p>剩余字数: {{getCount()}}</p> </p> <div> <script type="text/javascript" src="./angular.js"></script> <script type="text/javascript"> angular.module(‘noCntAPP‘,[]) .controller(‘noCntCtrl‘,[‘$scope‘,function($scope){ $scope.txtArea=‘‘; // 初始化文本区域值为空串 $scope.getCount=function(){ return 100 - $scope.txtArea.length; } }]); </script> </body> </html>
<!DOCTYPE html> <html lang="zh_CN"> <head> <title>字数小例子</title> </head> <body ng-app="noCntAPP"> <div ng-controller="noCntCtrl"> <h2>我的笔记</h2> <textarea cols="30" rows="10" ng-model="txtArea"></textarea> <p><button>读取</button> <button>提交</button> <button>撤销</button> <p>剩余字数: {{getCount()}}</p> </p> <div> <script type="text/javascript" src="./angular.js"></script> <script type="text/javascript"> angular.module(‘noCntAPP‘,[]) .controller(‘noCntCtrl‘,[‘$scope‘,function($scope){ $scope.txtArea=‘‘; // 初始化文本区域值为空串 $scope.getCount=function(){ if($scope.txtArea.length>100){ $scope.txtArea = $scope.txtArea.slice(0,100); // 超过 100 截取前 0-99 个字符 } return 100 - $scope.txtArea.length; } }]); </script> </body> </html>
以上是关于AngularJS 启程三的主要内容,如果未能解决你的问题,请参考以下文章
日常Geetest滑动验证码(三代canvas版)处理小结(以B站登录验证为例)