我已经检查了Closure库as instructred,但无法找到一种方法来使用该库(即控制台内的goog.require('math'),只是为了尝试它并进行测试。
提前致谢。
答案 0 :(得分:2)
加载Closure Library的base.js后,您可以在Chrome Dev Tools控制台中引用该库。
<!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>
> goog.require('goog.math');
<* undefined
观察Resources | Frames | (closure-test.html) | Scripts
,将加载math.js.
> goog.math.modulo(-1, 8);
<* 7