我已经按照 instructred的形式检查了 Closure 库,但找不到在控制台中使用该库的方法(即 goog.require('math') 只是为了尝试和测试目的。
提前致谢。
我已经按照 instructred的形式检查了 Closure 库,但找不到在控制台中使用该库的方法(即 goog.require('math') 只是为了尝试和测试目的。
提前致谢。
加载Closure 库的base.js后,您可以在 Chrome 开发工具控制台中引用该库。
<!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