我有以下代码,它在我的Drupal Webform的确认页面上创建了一个图表(我创建了一个压力测试),并且已经工作了好几周。现在突然间,这完全停止了工作。
http://www.beatinganger.com/node/353/done?sid=720
任何人都有任何想法,为什么它停止工作,以及如何让它再次工作?我没有对代码进行任何更改。我一直在撕扯我的头发。
jQuery(function($) {
var ticks = [], vals = [];
var one = $('#edit-submitted-physical-state, #edit-submitted-mental-state, #edit-submitted-feelings-of-belonging, #edit-submitted-feelings-of-justice, #edit-submitted-feelings-of-integrity, #edit-submitted-weight-management, #edit-submitted-emotional-ease, #edit-submitted-feelings-of-stimulation, #edit-submitted-feelings-of-justice, #edit-submitted-feelings-of-relationship, #edit-submitted-feelings-of-satisfaction')
.each(function(i, el) {
vals.push(Number(el.value));
ticks.push($('label[for="'+el.id+'"]').text().replace('Feelings of ', '').replace(': ', '').replace(' State', '').replace(' Ease', '').replace(' Management', '').replace(' Control', ''));
});
var plot1 = $.jqplot('chart1', [vals], {
seriesDefaults: {
renderer: $.jqplot.BarRenderer
},
axes: {
xaxis: {
renderer: $.jqplot.CategoryAxisRenderer,
ticks: ticks
},
yaxis: {
min: 0,
max: 20,
}
}
});
});
在我的脑子部分,我有以下
<script language="javascript" type="text/javascript" src="http://www.beatinganger.com/scripts/jquery.jqplot.js"></script>
<script language="javascript" type="text/javascript" src="http://www.beatinganger.com/scripts/jqplot.barRenderer.js"></script>
<script language="javascript" type="text/javascript" src="http://www.beatinganger.com/scripts/jqplot.categoryAxisRenderer.js"></script>
<link rel="stylesheet" type="text/css" href="http://www.beatinganger.com/scripts/jquery.jqplot.css" />
答案 0 :(得分:0)
知道了。可能是服务器已关闭或文件已被移动。因此,从该服务器保存.js文件,然后从本地目录使用它。
答案 1 :(得分:0)
jqPlot期待一个ID,但你在页面上使用了一个类。尝试将其更改为id =“chart1”