私はJavascriptにかなり慣れていないので、このストックチャートを実行して、このURLから正常に動作しようとしています: http://jsfiddle.net/2zBRt/2/
The code is excatly the same from the URL, some minor changes are made to ensure that the JQuery library is called
ただし、このエラーが発生し続けます:
(1) Uncaught TypeError: 未定義のメソッド「setDefaults」を呼び出せません
(2) キャッチされていない TypeError: オブジェクト [オブジェクト オブジェクト] にはメソッド 'datepicker' がありません
Code:
function(chart){
// apply the date pickers
setTimeout(function(){
$('input.highcharts-range-selector',
$('#'+chart.options.chart.renderTo)).datepicker()
},0)
});
// Set the datepicker's date format
$.datepicker.setDefaults({
dateFormat: 'yy-mm-dd',
onSelect: function(dateText) {
this.onchange();
this.onblur();
}
});
助けてください、ボスが私の首の下で息を荒くしているのです