我无法通过测试,因为 canoo 不支持外部 js 文件中的全局变量。
索引.html:
<html>
<head>
<script src="index.js"></script>
</head>
<body>
<button onclick="alert(a+1);">asldkf</button>
</body>
</html>
index.js
var a=1;
CanooWebtest 抛出:
JavaScript error loading page
http://localhost:8080/index.html:
ReferenceError: "a" is not defined. (JavaScriptStringJob#1)
有什么建议吗?