(function(){ var jQuery = function( ) {return new jQuery.init( );}; //1 jQuery.prototype = { init:function(){}, fx:function(){ alert(‘这是类库的一个实例化方法[fx]‘); } }; //2 jQuery.prototype.init.prototype = jQuery.prototype; //3 window.doll= window._ = jQuery; //4 })() doll().fx();
jQuery 中的最基本代码 4句话
时间: 2024-10-08 21:53:08