2012-04-23 63 views
0

我正在開發面向Android的Phonegap應用。
我想實現一個簡單的jqplot圖表如何在Android手機應用內繪製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文件的代碼。

我加入以下js代碼爲jqplot圖表

<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> 

我沒有得到什麼確切的問題

+1

你的意思是「哪裏hellophonegap.js是我的js文件,我將在以後使用這個js寫代碼到我的index.html文件中。」? – 2012-04-29 10:44:14

+0

我的意思是我導入這個js文件到index.html文件 – user1230413 2012-05-14 05:33:49

回答

0

檢查jquery.jqplot.min.js的路徑文件

相關問題