For…In 声明用于遍历数组或者对象的属性(对数组或者对象的属性进行循环操作)。
var Status = function(arg){ this.arg = arg;}Status.prototype.getStatus = function(){ return this.arg;}
接着实例化:
var instance = new Status('a test string');instance.getStatus();instance.ooxx = 'ooxx';
用 for…in 遍历属性:
for(i in instance){ console.log(i);}
看下运行结果:
argooxxgetStatus
可见原型方法也被遍历出来的,但事实上往往并不想要。于是需要这么干:
for(i in object){ if(object.hasOwenProperty(i)){ //... }}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。