js 遍历对象属性

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
var xx = {
                      "cn":"china",
                      "tw":"taiwen",
                      "hk":"hongkong"
                       };

 for(var p in xx){  

alert(p+"    "+xx[p]);
}
alert(xx['cn']);
</script>

</head>
<body>

</body>
</html>
 

你可能感兴趣的:(JavaScript,html)