2015年4月9日

js核心知识

摘要: 枚举属性:var o = {x:1}console.log("x" in o);//trueconsole.log("toString" in o);//truevar abc={x:1,y:1,z:3};for(p in abc){ console.log(p,abc[p])} 阅读全文

posted @ 2015-04-09 15:36 防空洞123 阅读(109) 评论(0) 推荐(0) 编辑

导航