我目前正在使用Highcharts,它一直在控制台中给我这个错误:Uncaught TypeError: $(...).highcharts is not a function
我一直在寻找解决方案,所有人都说你需要将jquery脚本放在HighCharts脚本之上,如下所示:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
但它仍然一直给我这个错误。可以是因为jquery版本吗?
这是我的代码:
HTML:
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
JS:
$(function () {
$('#container').highcharts({
chart: {
type: 'line'
},
title: {
text: 'Monthly Average Temperature'
},
subtitle: {
text: 'Source: WorldClimate.com'
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
yAxis: {
title: {
text: 'Temperature (°C)'
}
},
plotOptions: {
line: {
dataLabels: {
enabled: true
},
enableMouseTracking: false
}
},
series: [{
name: 'Tokyo',
data: [7.0, 6.9, 9.5, 14.5, 18.4, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]
}, {
name: 'London',
data: [3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8]
}]
});
});
有什么我没看到的吗?
感谢您的帮助!
答案 0 :(得分:1)
我找到了解决方案!
这很简单。我正在使用Foundation 6基本模板,显然在结束</body>
标记之前有这个脚本标记<script src="bower_components/jquery/dist/jquery.js"></script>
,如果我删除它,则没有错误。只是我身边的一个错误。
度过美好的一天!