0

我无法通过测试,因为 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)

有什么建议吗?

4

1 回答 1

0

您总是可以欺骗它并将其添加到全局对象之一 - 窗口,文档......不是一个好的解决方案,但应该可以工作。

<script>
    window.a = 1;
</script>
于 2013-01-30T13:38:53.383 回答