我有一个对象,我想取一个值,例如" title1",我应该使用什么函数来解决问题。 请帮帮我。
[{
total1 : "1200",
total2 : "800",
title1 : "Birth Rate",
title2 : "Death Rate",
year : "2011"
}]
抱歉我的错误..该数据来自console.log() 数据来自
$( ".residentgraph" ).each(function(i,el) {
var ids = $(this).attr('id');
var value = $('#'+ids).val();
var dataVal = value.split("/");
chartData.push({
'title1' : dataVal[0],
'title2' : dataVal[1],
'total1' : dataVal[2],
'total2' : dataVal[3],
'year' : dataVal[4]
});
});