坏小仔

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2012年9月18日

摘要: function User( properties ) {// Iterate through the properties of the object, and make sure// that it's properly scoped (as discussed previously)for ( var i in properties ) { (function(thiz){// Create a new getter for the propertythiz[ "get" + i ] = function() {return properties[i];};/ 阅读全文
posted @ 2012-09-18 14:38 坏小仔 阅读(114) 评论(0) 推荐(0) 编辑