1

我已经按照 instructred的形式检查了 Closure 库,但找不到在控制台中使用该库的方法(即 goog.require('math') 只是为了尝试和测试目的。

提前致谢。

4

1 回答 1

2

加载Closure 库的base.js后,您可以在 Chrome 开发工具控制台中引用该库。

闭包测试.html(加载 base.js)

<!doctype html>
<html>
<head>
  <title>Closure Library Test</title>
  <script src="http://closure-library.googlecode.com/svn/trunk/closure/goog/base.js"></script>
</head>

<body>
<h1>Closure Library Test</h1>

</body>
</html>

Chrome 开发工具控制台

> goog.require('goog.math');
<* undefined

观察Resources | Frames | (closure-test.html) | Scripts,math.js 将被加载。

> goog.math.modulo(-1, 8);
<* 7
于 2012-09-18T19:43:17.733 回答