为什么同样的js代码,内嵌可以执行,而复制建成文件外部调用就失败呢?

我把js代码直接复制新建个JS文件,html中通过id来读取,为什么不行,是还需要加什么吗?

<!DOCTYPE HTML>




Highcharts Example
    <style type="text/css">

#container {
min-width: 310px;
max-width: 800px;
height: 400px;
margin: 0 auto
}


    <script type="text/javascript">

Highcharts.chart('container', {

title: {
    text: 'Solar Employment Growth by Sector, 2010-2016'
},

subtitle: {
    text: 'Source: thesolarfoundation.com'
},

yAxis: {
    title: {
        text: 'Number of Employees'
    }
},
legend: {
    layout: 'vertical',
    align: 'right',
    verticalAlign: 'middle'
},

plotOptions: {
    series: {
        label: {
            connectorAllowed: false
        },
        pointStart: 2010
    }
},

series: [{
    name: 'Installation',
    data: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175]
}, {
    name: 'Manufacturing',
    data: [24916, 24064, 29742, 29851, 32490, 30282, 38121, 40434]
}, {
    name: 'Sales & Distribution',
    data: [11744, 17722, 16005, 19771, 20185, 24377, 32147, 39387]
}, {
    name: 'Project Development',
    data: [null, null, 7988, 12169, 15112, 22452, 34400, 34227]
}, {
    name: 'Other',
    data: [12908, 5948, 8105, 11248, 8989, 11816, 18274, 18111]
}],

responsive: {
    rules: [{
        condition: {
            maxWidth: 500
        },
        chartOptions: {
            legend: {
                layout: 'horizontal',
                align: 'center',
                verticalAlign: 'bottom'
            }
        }
    }]
}

});


问题描述的都不太清楚 截图也很混乱 你可以把htm文件内容展示出来,把你写的外链的JS文件也发出来,这样才能看出来问题啊

可能是顺序加载,将外部js文件写在$(function(){ ... })内