嗨我只是想保护我的jQuery.get url(data.php),如果有机会在课堂上或其他任何地方制作jQuery.get?
我的代码在这里
jQuery.get('data.php', null, function(data) {
var lines = [];
traffic = [];
try {
// split the data return into lines and parse them
data = data.split(/\n/g);
jQuery.each(data, function(i, line) {
line = line.split(/\t/);
date = Date.parse(line[0] +' UTC');
traffic.push([
date,
parseInt(line[1].replace(',', ''), 10)
]);
});
} catch (e) { }
/// options.series[0].data = traffic;
//$res = traffic;
});
我想保护data.php的网址 ps:data.php是我从sql snd使用for highcharts的一面交通所以对hightcharts的调用是
series: [{
name: 'Stats',
data: traffic
先谢谢任何人!