<html>
<head>
<script>
var person = {
name:"suesunna",
age:22,
love:"coding"
};
for(var i in person){
document.write("this person's "+i+" is "+person[i] +"<br/>");
}
</script>
</head>
<body>
</body>
</html>
- 1楼fhqcc07014天前 13:47
- 这么简单的东东也发表,初学者