0

我正在为 Android 开发一个 Phonegap 应用程序。
我想实现一个简单的jqplot图表

var plot1 = $.jqplot('graphcontentview', [[3,7,9,1,4,6,8,2,5]]); 

其中 graphcontentview 是包含图表的 div 的 id。

当我运行此代码时,它会产生以下错误 -

Uncaught TypeError: Object function (a,b){return new e.fn.init(a,b,h)} has no method 'jqplot' at file:///android_asset/www/hellophonegap.js:27

其中 hellophonegap.js 是我的 js 文件,稍后我将使用此 js 将代码写入我的 index.html 文件。

我为 jqplot 图表添加了以下 js 代码

<script type="text/javascript" src="jquery.jqplot.min.js"></script> 
<script type="text/javascript" src="/plugins/jqplot.canvasTextRenderer.min.js"></script>
<script type="text/javascript" src="/plugins/jqplot.jqplot.canvasAxisLabelRenderer.min.js"></script>

我没有得到确切的问题

4

1 回答 1

0

检查 jquery.jqplot.min.js 文件的路径

于 2012-12-17T13:57:58.917 回答