admin管理员组文章数量:1350369
I am trying to access a property (name) on an object that is in fact located inside another object. I initialized the object in a file:
var icons = {
"facebook": {name: 'facebook', icon_url: 'img/logos/facebook.png'}
};
And then tried to check the object with this code:
var icon_current_class;
for(var icon in icons){
console.dir(icon);
//outputs an object named facebook but says it has no properties
if( $(this).hasClass( icon.name ) ){
icon_current_class = icon.name;
}else{
alert("Something went wrong. Please contact the mods.");
}
}
And of course, the alert("Something went wrong") goes off everytime I run this. I have tried for a long time to find a solution, but to no avail. Can anyone please help?
I am trying to access a property (name) on an object that is in fact located inside another object. I initialized the object in a file:
var icons = {
"facebook": {name: 'facebook', icon_url: 'img/logos/facebook.png'}
};
And then tried to check the object with this code:
var icon_current_class;
for(var icon in icons){
console.dir(icon);
//outputs an object named facebook but says it has no properties
if( $(this).hasClass( icon.name ) ){
icon_current_class = icon.name;
}else{
alert("Something went wrong. Please contact the mods.");
}
}
And of course, the alert("Something went wrong") goes off everytime I run this. I have tried for a long time to find a solution, but to no avail. Can anyone please help?
Share Improve this question asked Oct 20, 2013 at 22:02 Marcos PereiraMarcos Pereira 1,17115 silver badges26 bronze badges 2-
3
JavaScript's
in
is always for keys rather than values. – Jonathan Lonowski Commented Oct 20, 2013 at 22:05 -
2
You should just read the
for...in
documentation: developer.mozilla/en-US/docs/Web/JavaScript/Reference/…. – Felix Kling Commented Oct 20, 2013 at 22:27
2 Answers
Reset to default 6for(var x in y)
x
is the key of the object, you need to use y[x]
to return the value:
for(var icon_name in icons){
var icon = icons[icon_name];
.....code....
}
for(var icon in icons)
In the for loop, icon
you're assigned there isn't an object, it's the index/key of each item.
for (var i in icons){
console.dir(icons[i]);
...
本文标签: htmlJavascript can39t access object property through forin loopStack Overflow
版权声明:本文标题:html - Javascript: can't access object property through for..in loop - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743876988a2554509.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论