JavaScript Length 字符长度函数,在很多时间我们会用length函数了,因为你得前台判断一个用户输入的用户名与密码长度是否是我想规定的就会用到length哦.
高级scripters往往需要知道如何长期一个JavaScript字符串。例如,如果一个webdeveloper是建立一个提交表单,要求用户将不再超过20个字符,那么她将需要检查的长度字符串之前,允许用户提交的数据。
字串长
长度属性返回的字符数是在一个字符串,用一个整数。以下是基本的代码用于访问此属性。
<script type="text/javascript">
var myString = "123456";
var length = myString.length;
document.write("The string is this long: " + length);
// Same thing, but using the property inside the write function
document.write("<br />The string is this long: " + myString.length);
</script>
String Changed? Length Might Change
如果你提到财产的长度后, concatenating (新增)某些字符的字符串,然后长度财产将反映这些变化。想想这是一个友好的提醒只会检查的长度字符串后,您确定这是不会改变
<script type="text/javascript">
var myString = "123456";
document.write("The string is this long: " + myString.length);
myString = myString + "7890";
document.write("<br />The string is now this long: " + myString.length);
</script>
输出6,10