TypeError: $(. .).Highcharts不是javascript中的函数

TypeError: $(...).highcharts is not a function in javascript

本文关键字:javascript 函数 不是 Highcharts TypeError      更新时间:2023-09-26

我试图使用javascript highcharts,但得到这个错误:-

TypeError: $(…)。Highcharts不是一个函数数据:[3.9,4.2,5.7,8.5,11.9,15.2,17.0,16.6,14.2,10.3,6.6,4.8)

highcharts库文件已包含,但仍不能工作。我的代码是:

<head>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<script>
function analytics()
{
            $('#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]
            }]
        });
}   
</script>
<head>
<body>
<input type="button" value="ok" id= "button" onclick="analytics()">
</body>

我认为你包括你的jquery脚本文件下面的高图库,包括它上面,并尝试它可能是解决方案。