1.window 设置或返回窗口中的框架frames数量。
主要浏览器都支持 length 属性,与 window.frame.length属性的值相同。
<script type="text/javascript">
alert(window.length);//"3"
alert(window.frame.length);//"3"
</script>
<body>
<iframe src="http://microsoft.com"></iframe>
<iframe src="http://www.w3school.com.cn/index.html"></iframe>
<iframe src="http://www.baidu.com"></iframe>
</body>
2.function 函数期望的参数个数。为查看默认情况下预期的参数个数提供了一种简便方式。
function testplus(i) {
alert(i*i);
}
function sayHello() {
alert("Hello!");
}
alert(testplus.length); //定义一个参数,输出 "1"
alert(sayHello.length); //没有定义参数,输出 "0"
3.array 设置或返回数组中元素的数目。
<script type="text/javascript">
function getElements()
{
var x=document.getElementsByTagName("input");//返回带有指定标签名的对象的集合
alert(x.length);//"1"
}
</script>
<input type="button" onclick="getElements()" />
4.string 计算字符串的长度
var txt="Hello World!";
alert(txt.length);//"12"