3

以下是文件的全部内容:

<html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>jqPlot Examples</title>

    <!--[if IE]><script language="javascript" type="text/javascript" src="excanvas.js"></script><![endif]-->
    <script language="javascript" type="text/javascript" src="../jqtouch-1_0_b/jqtouch/jquery.1.3.2.min.js"></script>
    <script language="javascript" type="text/javascript" src="../javascript/jquery.jqplot.min.js"></script>
    <link rel="stylesheet" type="text/css" href="../javascript/jquery.jqplot.css" />
 </head>
    <body>
    <h1>jqPlot Examples</h1>

    <script id="source" language="javascript" type="text/javascript">
        $.jqplot('chartdiv',  [[[1, 2],[3,5.12],[5,13.1],[7,33.6],[9,85.9],[11,219.9]]]);
    </script>

div<br>
   <div id="chartdiv" style="height:400px;width:300px; "></div>
div<br>


 </body>
</html>
<html>

这是我在 FF、chrome、IE 中看到的:

jqPlot 示例

div

div

我在我的 Apache 错误日志中没有看到任何错误。我知道所有 .js 文件都可以从 html 访问。有谁知道为什么这可能不起作用?

4

3 回答 3

5

用这段代码替换您的绘图脚本并查看。

<SCRIPT LANGUAGE="JavaScript">
 $(function() { var plot1 = $.jqplot('chartdiv',  [[[1,2],[3,5.12],[5,13.1],[7,33.6],[9,85.9],[11,219.9]]]); })

</SCRIPT>

还要检查您的 .js 文件是否在正确的位置。

于 2010-06-25T06:46:39.787 回答
4

jqPlot 留言板上得到了我的答案。

div必须在调用 to之前jqPlot。我想这是有道理的,但我只是看不到它。我的菜鸟颜色显示....

于 2010-06-15T18:39:11.450 回答
0

使用以下链接路径

<link rel="stylesheet" type="text/css" href="http://cdn.jsdelivr.net/jqplot/1.0.8/jquery.jqplot.min.css" />
于 2014-11-25T12:25:14.793 回答