同じhtmlページjquerymobile(www.jquerymobile.com)を使用し、jqplot jsライブラリ(www.jqplot.com)で簡単なグラフをプロットする必要があります。jqplotとjquerymobileとの競合
グラフが表示されないため、jqplotとjquerymobileの間に競合の問題があります。しかし、もし私がjquerymobileスクリプトにコメントすると、その表は見えてきました。
これは私のhtmlコードの一部です:
[...head...]
<link rel="stylesheet" type="text/css" href="jquery.jqplot.1.0.0b2_r792/dist/jquery.jqplot.css" />
<script type="text/javascript" src="jquery-1.7.1.js"></script>
<script type="text/javascript" src="jquery.mobile-1.0/jquery.mobile-1.0.js"></script>
<script type="text/javascript" src="jquery-ui-1.8.16.custom/js/jquery-ui-1.8.16.custom.min.js"></script>
<script type="text/javascript" src="jquery.jqplot.1.0.0b2_r792/dist/jquery.jqplot.js"></script>
<script type="text/javascript" src="jquery.jqplot.1.0.0b2_r792/dist/plugins/jqplot.canvasTextRenderer.min.js"></script>
<script type="text/javascript" src="jquery.jqplot.1.0.0b2_r792/dist/plugins/jqplot.canvasAxisLabelRenderer.min.js"></script>
[...script...]
$(document).ready(function() {
var plot1 = $.jqplot ('chart1', [[3,7,9,1,4,6,8,2,5]]);
});
[...body...]
<div class="jqplot" id="chart1" style="height:300px;width:400px;"></div>
対立を克服するための任意のアドバイス?多分私は何かが恋しい?事前に
おかげで、M.