请你看看This Demo并告诉我为什么我无法在jsfiddle上运行Highcharts.js
$(document).ready(function() {
$('pre code').each(function(i, e) {
hljs.highlightBlock(e)
});
答案 0 :(得分:1)
您没有关闭$(document).ready(function() {
来电。您可以在浏览器的开发人员控制台中查看语法错误。
这是一个固定的代码块:
$(document).ready(function() {
$('pre code').each(function(i, e) {
hljs.highlightBlock(e)
});
}); // this is the missing closing });