AngularJS实现的输入框字数限制提醒功能示例

秋天,是收获的季节,它因收获而变得美丽。苹果成熟了,成熟的苹果染红了大树,葡萄成熟了,成熟的葡萄在向我们微笑,桃子也成熟了,桃子像小女孩粉红的脸蛋。

本文实例讲述了AngularJS实现的输入框字数限制提醒功能。分享给大家供大家参考,具体如下:

<!DOCTYPE html>
<html>
<head lang="en">
  <meta charset="UTF-8">
  <title>www.haodaima.com AngularJS字数提示</title>
</head>
<style>
  *{
    margin:0;
    padding:0;
  }
  input,button,textarea,select{
    outline:none;
  }
  textarea{
    resize:none;
  }
  .content{
    width:350px;
    height:150px;
    font-size:18px;
    text-indent:40px;
    overflow-y: hidden;
    overflow-x: hidden;
  }
  .content:hover{
    border:1px solid #00ffff;
    cursor:pointer;
  }
  .top{
    vertical-align:top;
  }
  .fontColor
  {
    color:#eee;
  }
  .tableT td{
    margin-right:20px;
  }
</style>
<body ng-app="myApp" ng-controller="myControl">
<table class="tableT">
  <tr>
    <td class="top">退货说明 :</td>
    <td><textarea id="sayId" class="content" ng-model="say" ng-keyup="changeText()"></textarea></td>
  </tr>
  <tr>
    <td></td>
    <td class="fontColor">你还可以输入{{textLength}}字</td>
  </tr>
</table>
</body>
<script type="text/javascript" src="../js/jquery-1.8.3.js"></script>
<script type="text/javascript" src="../js/angular.min.js"></script>
<script type="text/javascript">
  var app = angular.module('myApp',[]);
  app.controller('myControl',function($scope){
    $scope.textLength = 10;
    $scope.changeText = function(){
      var length = $("#sayId").val().length;  //使用$scope.say.length的时候,输入空格的时候没有计算空格长度。
      console.log(length);
      $scope.textLength = 10 - length;
      if($scope.textLength<=0){
        $scope.textLength = 0;
        $("#sayId").val($scope.say.slice(0,10));
      }
    }
  });
</script>
</html>

运行效果:

PS:这里再为大家推荐2款功能相似的在线工具供大家参考:

在线字数统计工具:
http://tools.haodaima.com/code/zishutongji

在线字符统计与编辑工具:
http://tools.haodaima.com/code/char_tongji

希望本文所述对大家AngularJS程序设计有所帮助。

以上就是AngularJS实现的输入框字数限制提醒功能示例。坚不可催是因为经历过狂风暴雨;无畏世界是因为做到了中心无敌。更多关于AngularJS实现的输入框字数限制提醒功能示例请关注haodaima.com其它相关文章!

您可能有感兴趣的文章
ajax实现输入框文字改变展示下拉列表的效果示例

jQuery实现input输入框获取焦点与失去焦点时提示的消失与显示功能示例

Element输入框带历史查询记录的实现示例

zepto.js 实时监听输入框的方法

js限制输入框只能输入数字(onkeyup触发)