我正在按照本教程[chart.js][1]
进行操作,但出现此错误和此行
var ctx = $("#myChart").get(0).getContext("2d");
$("#myChart")
代表<figure id="myChart" class="chart"></figure>
的位置引发此错误
Uncaught TypeError: Object #<HTMLElement> has no method 'getContext'
最佳答案
好的,您必须使用它
<canvas id="myChart" class="chart"></canvas>