jquery框架研究
摘要:
上代码var $ = jQuery = function() { return new jQuery.fn.init();};jQuery.fn = jQuery.prototype = { init: function(args) { this.length = 0; //修改length this.test = function() { //添加test方法 return this.length; }; delete this.jquery; //删除jquery属性 ... 阅读全文
posted @ 2012-08-21 22:31 康乐sty 阅读(109) 评论(0) 推荐(0) 编辑