close
一、for/in 迴圈
主要用於陣列輸出。
二、程式範例如下:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>無標題文件</title>
<script language="javascript">
var a1=[1,22,33,44,55,66];
for(x in a1){
document.write(a1[x]+"</br>");
}
document.write("=================</br>");
var z;
var text1=new Object();
text1.name="t1";
text1.age="40";
text1.phone="02-12345678";
for(z in text1){
document.write(z+"="+text1[z]+"</br>");
}
</script>
</head>
<body>
</body>
</html>
文章標籤
全站熱搜
留言列表