标签:type ext length rdl 用户名 内容 user pass word
<input id= "username" type= "text" placeholder="username">;
<inpur id= "password" type= "password" placeholder= "password">
var usernameLength = angular.element(‘#username‘).val().length;
var passwordLength = angular.element(‘#password‘).val().length;
console.log(usernameLength);
console.log(passwordLength); 即可得到要的字符串长度。
用angular自带的方法获取input中内容(以用户名和密码为例)的字符串长度方法
标签:type ext length rdl 用户名 内容 user pass word
原文地址:http://www.cnblogs.com/mgqworks/p/7488950.html