我正在使用 jboss 在 Windows 7 上进行开发。我已将 jsColor.js 与我在 html5 中的 index.html 文件放在同一目录中。我在一个单独的 .js 文件中有一个测试函数。我已经包括
<script type="text/javascript" src="jscolor.js"></script>
在 index.html 的标头中。
测试功能如下。
function Test(){
alert("Before call");
var col = new jsColor("red");
alert("After call");
}
未修改的功能只给了我一个警告框“通话前”。但是注释掉
var col = new jsColor("red");
给了我两个警告框:“通话前”和“通话后”。
这表明
var col = new jsColor("red");
产生错误。