我有contents
对象,里面有一些数据。我在做什么我首先获取 div 标签的类名,然后基于该类名我想从基于此类的内容中获取数据。这是我的代码
var contents = {
inner_one: {
title: 'This is title for one',
body: 'This is body for one'
},
inner_two: {
title: 'This is title for two',
body: 'This is body for two'
}
};
var inner = $(div).attr('class'); //here lets say inner = inner_one
console.log(contents.inner);
但是我上面的代码不起作用。我假设是因为我的代码会查找其中不存在的inner
对象。contents
有没有其他方法可以使这项工作?