首页 > 代码库 > underscore.js 分析 第三天
underscore.js 分析 第三天
// Create a safe reference to the Underscore object for use below. // 为Underscore对象创建一个安全的引用 // _为一个函数对象,它的实例服从单例模式。 var _ = function(obj) { if (obj instanceof _) return obj; if (!(this instanceof _)) return new _(obj); this._wrapped = obj; };
来一个最简单的例子
<!DOCTYPE html><html><head> <meta charset="utf-8" /> <title>Underscore</title> <script src="underscore.js"></script></head><body></body></html><script type="text/javascript">// 在浏览器中 _ 是全局对象// 查看Underscore的当前版本alert(_.VERSION);</script>
underscore.js 分析 第三天
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。