当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JS For...In

JavaScript
JS数学对象参考
JS字符串对象参考
JS函数参考
JS事件参考
Javascript 常用正则表达式
FF和IE下的js兼容性问题
jQuery 简单介绍
jQuery / 核心 / $(expression, [context] ) 函数
jQuery / 核心 / $(html) 函数
如何使用JS来判断浏览器类型(ie、firefox,等等)
Javascript在IE和FireFox中的不同表现
3个js字符编码函数区别
javascript 中的 XMLDOM 对象

JavaScript 中的 JS For...In


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-01   浏览: 1015 ::
收藏到网摘: n/a

The for...in statement is used to loop (iterate) through the elements of an array or through the properties of an object.
for...in声明通过一组元素或对象属性进行循环(重复)。


Examples
举例

For...In statement
How to use a for...in statement to loop through the elements of an array.
怎样通过一组元素来使用for...in声明进行循环。


JavaScript For...In Statement
JS的for...in声明

The for...in statement is used to loop (iterate) through the elements of an array or through the properties of an object.
for...in声明通过一组元素或对象属性进行循环(重复)。

The code in the body of the for ... in loop is executed once for each element/property.
在for...in循环躯干部分里的代码针对每个元素/属性执行一次。

Syntax
语法

for (variable in object)
{
code to be executed }

The variable argument can be a named variable, an array element, or a property of an object.
变量可以是数组或是对象的属性。

Example
举例

Using for...in to loop through an array:
数组使用for...in循环:

<html>

<body>
<script type="text/javascript">
var x
var mycars = new Array()
mycars[0] = "Saab"
mycars[1] = "Volvo"
mycars[2] = "BMW"

for (x in mycars)
{
document.write(mycars[x] + "<br />")
}

</script>
</body>
</html>

评论 (0) All

登陆 | 还没注册?