-6

我是 JavaScript 新手。

我正在尝试使用 javascript 创建交互式图形。我找到了一个很好的源代码,但我找不到执行此代码的方法。

这是我正在尝试创建的图表 http://philogb.github.io/jit/static/v20/Jit/Examples/BarChart/example1.html#

这是源代码 http://philogb.github.io/jit/static/v20/Jit/Examples/BarChart/example1.js

我保存了源文件并创建了一个 .html 文件(Notepad++),如下所示:

<html>
<head>
<title></title>
<script type="text/javascript" src="/example1.js"></script>
</head>

<body>
</body>
</html>

但我只是在 Internet Explorer 中得到一个空白页面。请帮忙 !

4

1 回答 1

-1

You need to add the jit-yc.js file too.

As can be encountered in the HEAD tag:

<script language="javascript" type="text/javascript" src="../../jit-yc.js"></script>

Simply download the file and put the script tag in your head and all can works perfectly. :)

于 2013-05-06T16:37:24.873 回答