我尝试将米尺添加到我的网站,我将js和css添加到我的信息文件
比我有这段代码的页面
<script>$(document).ready(function(){
s1 = [1];
plot0 = $.jqplot('chart0',[s1],{
title: 'Network Speed',
seriesDefaults: {
renderer: $.jqplot.MeterGaugeRenderer,
rendererOptions: {
label: 'MB/s'
}
}
});
});
</script>
<div class="plot0" style="width:250px;height:170px;"></div>
它给我一个错误“Uncaught No plot plot target”,任何想法?
答案 0 :(得分:1)
您需要在容器中附加一个ID:
<div id="chart0" class="plot0" style="width:250px;height:170px;"></div>
然后使用此ID绘制图表
请参阅工作示例here on JSFiddle