我的jsp似乎根本没有运行jqplot。
这是我的代码:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!--[if lte IE 8]><script src="${scriptRoot}/excanvas/excanvas.min.js" type="text/javascript"></script><![endif]-->
<script src="${scriptRoot}/jquery/jqplot/jquery.jqplot.min.js" type="text/javascript"></script>
<script src="${scriptRoot}/jquery/jqplot/plugins/jqplot.highlighter.min.js" type="text/javascript"></script>
<script src="${scriptRoot}/jquery/jqplot/plugins/jqplot.cursor.min.js" type="text/javascript"></script>
<script src="${scriptRoot}/jquery/jqplot/plugins/jqplot.canvasTextRenderer.min.js" type="text/javascript"></script>
<script src="${scriptRoot}/jquery/jqplot/plugins/jqplot.canvasAxisTickRenderer.min.js" type="text/javascript"></script>
<script src="${scriptRoot}/jquery/jqplot/plugins/jqplot.dateAxisRenderer.min.js" type="text/javascript"></script>
<script src="${scriptRoot}/jquery/jqplot/plugins/jqplot.pointLabels.min.js" type="text/javascript"></script>
<link href="${cssRoot}/jquery/jqplot/jquery.jqplot.css" rel="stylesheet" type="text/css" />
<div id="chartdiv1" style="width:1000px;height:300px"></div>
<br><br />
Welcome
<script type="text/javascript">
$ (document).ready(function(){
var plot1 = $.jqplot ('chart1', [[1,7,9,1,4,6,8,2,5]]);
});
</script>
我已确保在所需的文件夹结构中包含所需的CSS和Scripts文件和文件夹。 有人可以帮帮我吗?
答案 0 :(得分:0)
$.jqplot
函数的第一个参数是div id。所以我想你错过了像
<div id="chart1" style="height:300px; width:500px;"></div>