标签:
这里引用的例子比较特殊,这个javascript的for in()结构其他的语言很少有。
用于遍历所有元素很方便。
这里送上代码:
<!--这里的代码主要是是华氏温度和摄氏温度进行转换-->
<!--这里的for()循环使用的是for。。 in结构的使用-->
<html>
<title>综合的练习</title>
<head>
</head>
<body>
<script language = "JavaScript" type = "text/javascript">
function convertToCentigrade(degFahren)
{
var degCent;
degCent = 5 / 9 * (degFahren - 32);
return degCent;
}
var degFahren = new Array(212, 32, -459.15);
var degCent = new Array();
var loopCounter;
<!---这里遍历数组里的所有的元素->
for(loopCounter in degFahren)
{
document.write(" " + degFahren[loopCounter] + " ");
}
for(loopCounter = 0; loopCounter <= 2; loopCounter++)
{
degCent[loopCounter] = convertToCentigrade(degFahren[loopCounter]);
}
for(loopCounter = 2; loopCounter >= 0; loopCounter--)
{
document.write("Value" + loopCounter + "was" + degFahren[loopCounter] + "degress" + Fahrenheit);
document.write(" which is " + degCent[loopCounter] + "deggress centigrade <br/>");
}
</script>
</body>
<html>
标签:
原文地址:http://blog.csdn.net/u012965373/article/details/44199383