摘要: Javascript For/In 循环: 循环遍历对象的属性var person={fname:"John",lname:"Doe",age:25};for (x in person) { txt=txt + person[x]; }结果:JohnDoe25 jQuery jQuery... 阅读全文
posted @ 2015-08-26 14:11 巴别塔 阅读(547) 评论(0) 推荐(0) 编辑