您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)AngularJS怎么實現(xiàn)的輸入框字?jǐn)?shù)限制提醒功能,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
1、js屬于一種解釋性腳本語言;2、在絕大多數(shù)瀏覽器的支持下,js可以在多種平臺下運行,擁有著跨平臺特性;3、js屬于一種弱類型腳本語言,對使用的數(shù)據(jù)類型未做出嚴(yán)格的要求,能夠進行類型轉(zhuǎn)換,簡單又容易上手;4、js語言安全性高,只能通過瀏覽器實現(xiàn)信息瀏覽或動態(tài)交互,從而有效地防止數(shù)據(jù)的丟失;5、基于對象的腳本語言,js不僅可以創(chuàng)建對象,也能使用現(xiàn)有的對象。
具體如下:
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>www.jb51.net AngularJS字?jǐn)?shù)提示</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>
運行效果:
關(guān)于“AngularJS怎么實現(xiàn)的輸入框字?jǐn)?shù)限制提醒功能”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。