<!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>
js 遍历对象属性
最新推荐文章于 2024-01-09 15:50:54 发布