在Chrome DevTools中使用Closure Library

时间:2012-09-18 19:01:33

标签: javascript google-chrome google-chrome-devtools google-closure google-closure-library

我已经检查了Closure库as instructred,但无法找到一种方法来使用该库(即控制台内的goog.require('math'),只是为了尝试它并进行测试。

提前致谢。

1 个答案:

答案 0 :(得分:2)

加载Closure Library的base.js后,您可以在Chrome Dev Tools控制台中引用该库。

closure-test.html(load 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