我試圖訪問一個數組內的對象的屬性之一。這是我如何設置的。如何從數組中的對象訪問屬性?
var 2002 = [{"st_as_str":"01006000102","parm_desc":"ALKALINITY, TOTAL","sub":"ALKALINITY","is_fil":false,"is_reac":false,"date":"2002-09-02","time":"16:45","field_num":70237,"lims_r":"","result":137.0,"val_qual":"","ana_meth":"E3218A","unit":"MILLIGRAM PER LITER"},
{"st_as_str":"01006000102","parm_desc":"ALKALINITY, TOTAL","sub":"ALKALINITY","is_fil":false,"is_reac":false,"date":"2002-09-08","time":"14:30","field_num":70240,"lims_r":"","result":142.0,"val_qual":"","ana_meth":"E3218A","unit":"MILLIGRAM PER LITER"}]
//These two lines are actually one. I broke them up to make this somewhat readable. Also, this is a portion of the file.
我一直在試圖訪問這樣的屬性:
alert(2002[0].parm_desc);
如:alert(array[object at this index].thisproperty)
雖然它似乎並不奏效。這是我的更多代碼。
<script>
function getScript(url, callback) {
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = url;
script.onreadystatechange = callback;
script.onload = callback;
document.getElementsByTagName('head')[0].appendChild(script);
}
//this works and I am getting the alerts
getScript('./analysis_valqualifi.js', function(){
alert("Analysis Method: " + analysis_method[0][1]);
alert("Lims_ValQualifi: " + lims_valqualifi[0][1]);
});
//this isn't working
getScript('./2002_results.js', function(){
alert(2002[0].parm_desc);
});
</script>
第2個警報後還有15-20秒延遲我的其他腳本運行之前,所以我敢肯定JavaScript
被讀取文件和我的語法不正確。
變量不能以數字開頭。 – elclanrs