无法使用 jqplot 显示简单图形

can't display a simple graph using jqplot

我是一家公司的新员工,也​​是 php 和 jqplot 的新手。 :$ 我正在尝试使用 jqplot 创建一个简单的图形。 我遵循了 http://www.jqplot.com/tests/line-charts.php 中的所有说明 但我的 div 中没有显示任何内容 :( 有人可以帮忙吗? 我认为问题可能在于它没有加载 jqplot 文件:,(

<html>
    <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
        <title>Capacity Report</title>
        <!--[if lt IE 9]><script language="javascript" type="text/javascript" src="../../../jqplot/excanvas.js"></script><![endif]-->


                <script language="javascript" type="text/javascript" src="jquery.min.js"></script>
                <script language="javascript" type="text/javascript" src="jquery.jqplot.min.js"></script>
                <link rel="stylesheet" type="text/css" href="jquery.jqplot.css"/>
                <link rel="stylesheet" href="../../../css/style.css" type="text/css"/>
                <link rel="stylesheet" type="text/css" href="../../../jqplot/jquery.jqplot.css"/>
                <script type="text/javascript" src="../jquery.jqplot.min.js"></script>
                <script type="text/javascript" src="http://www.jqplot.com/src/jquery.jqplot.min.js"></script>
                <script type="text/javascript" src="../../../jqplot/jquery.js"></script>
                <script type="text/javascript" src="../../../jqplot/jquery.jqplot.js"></script>
                <script type="text/javascript" src="../../jqplot/plugins/jqplot.canvasTextRenderer.js"></script>
                <script type="text/javascript" src="../../jqplot/plugins/jqplot.canvasAxisLabelRenderer.js"></script>
               <script type="text/javascript" src="../../../jqplot/plugins/jqplot.ohlcRenderer.js"></script>
               <script type="text/javascript" src="../../../jqplot/plugins/jqplot.highlighter.js"></script>
               <script type="text/javascript" src="../../../jqplot/plugins/jqplot.dateAxisRenderer.js"></script>
                <script type="text/javascript" src="../../../jqplot/plugins/jqplot.canvasAxisTickRenderer.js"></script>
                <script type="text/javascript" src="../../../jqplot/plugins/jqplot.trendline.js"></script>
    </head>

    <body>

               <div id="chartdiv" style="height:400px;width:300px; ">graph1</div>
               <div id="chart1" style="height:400px;width:300px; ">graph2</div>
</body>
</html>

<script>  $.jqplot('chartdiv',  [[[1, 2],[3,5.12],[5,13.1],[7,33.6],[9,85.9],[11,219.9]]]); 
$(document).ready(function(){
        console.log("It works!!!");
        var plot1 = $.jqplot ('chart1', [[3,7,9,1,4,6,8,2,5]]);
    });
</script>

大家好我解决了我的错误! 问题出在文件路径中!玩了几个小时后,我意识到我试图用错误的路径打开 jqplot 文件!!! :P 希望这会帮助其他人解决同样的问题 这是我最终的工作代码 100% 防弹:)

<html>

<head>
<title>Working plots functions</title>

<!--[if lt IE 9]><script language="javascript" type="text/javascript" src="excanvas.js"></script><![endif]-->
<script language="javascript" type="text/javascript" src="../../jqplot/jquery.min.js"></script>
<script language="javascript" type="text/javascript" src="../../jqplot/jquery.jqplot.min.js"></script>

</head>

<body>
<script type="text/javascript">

$(document).ready(function(){
        console.log("It works!!!");
        var plot1 = $.jqplot ('chart1', [[3,7,9,1,4,6,8,2,5]]);
    });

$(document).ready(function(){
        console.log("It works!!!");
        var plot1 = $.jqplot ('chart2', [[3,7,9,1,5,6,8,2,5]]);
    });
</script>
Here is the start of the page...<br>

<div id="chart1" style="height:400px;width:300px;">graph1</div>
<div id="chart2" style="height:400px;width:300px;">graph2</div>

</body>

</html>