所以我想用HighCharts.js庫來創建一個圖表。這裏是我的代碼:Highcharts不起作用
<html>
<head>
<script src="jquery.min.js"></script>
<script src="highcharts.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var chart1 = new Highcharts.Chart({
chart: { renderTo: 'container', type: 'bar' },
title: { text: 'Fruit Consumption'},
xAxis: { categories: ['Apples', 'Bananas', 'Oranges'] },
yAxis: { title: { text: 'Fruit eaten'} },
series: [ {name: 'Jane', data: [1, 0, 4] }, { name: 'John', data: [5, 7, 3]} ]
});
});
</script>
</head>
<body>
<div id="container" style="width:100%; height:400px;">
</div>
</body>
</html>
我試圖在我的瀏覽器中運行這個,沒有任何反應。有人能告訴我我做錯了什麼嗎?謝謝
你的樣式看起來是鏈接到一個JavaScript文件 – 2013-02-16 23:11:11
嘗試打開發展控制檯(F12爲IE> = 9和Chrome,'Web開發 - > Firefox的Web控制檯),看看你是否看到任何錯誤。 – 2013-02-16 23:15:01
好的。我修復了您提出的所有錯誤,並打開了開發者控制檯。它這樣說:Uncaught SyntaxError:意外的令牌非法的 – Chad 2013-02-16 23:55:11