gpt4 book ai didi

javascript - Dygraph 不工作

转载 作者:行者123 更新时间:2023-11-29 20:05:23 28 4
gpt4 key购买 nike

我试图在 Web 应用程序中使用 Dygraphs。请看下面的简单代码。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>

<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>MyHtml.html</title>
<!--[if IE]>
<script type="text/javascript" src="/js/excanvas.js"></script>
<![endif]-->
<script type="text/javascript" src="/js/rgbcolor.js"></script>
<script type="text/javascript" src="http://dygraphs.com/dygraph-combined.js"></script>
<script type="text/javascript" src="/js/dygraph-combined.js"></script>
<script type="text/javascript" src="/js/dygraph.js"></script>
<script type="text/javascript" src="/js/CanvasRenderingContext2D.js"></script>
</head>

<body>
<div id="graphdiv"></div>
<script type="text/javascript">
g = new Dygraph(
document.getElementById("graphdiv"), "Date,Temperature\n" + "2008-05-07,75\n" + "2008-05-08,70\n" + "2008-05-09,80\n");
</script>
</body>

</html>

如果我包括这一行type="text/javascript"src="http://dygraphs.com/dygraph-combined.js"使用脚本,它在 firefox 和 chrome 中运行良好,但在 IE 中无法运行,它会给出类似“CanvasRenderingContext2D”未定义的错误。如果我下载 dygraph-combined.js 并将其包含在我的 Web 应用程序中并通过提供路径访问它,它不会在所有三种浏览器中工作,它会给出错误消息 Dygraph not defined。请帮我。我想知道为什么会这样。

最佳答案

您应该只需要包含 dygraph-combined.js,无论是来自您的网站还是您自己的网站。您是否在您的网站上包含了 excanvas.js?这可以解释为什么它在 IE8 中不起作用。

关于javascript - Dygraph 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12225796/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com