0
我做的圖表與此代碼:導入外部文件中的數組
HTML代碼
<div id="placeholder" style="width:600px;height:300px;"></div>
JS代碼
var all_data = [
{
data: [
[a,b],
[c,d]
]
}
];
// свойства графика
var plot_conf = {
series: {
lines: {
show: true,
lineWidth: 2
}
},
};
$.plot($("#placeholder"), all_data, plot_conf);
我的問題 - 怎樣才能導入來自外部文件(txt文件)的a,b,c和d的值?
使用AJAX讀取從服務器讀取文件。 – Barmar