我试图在 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 未定义。请帮我。我想知道为什么会这样。