为什么jQuery.prototype中有init函数?我把它放在 jQuery 的闭包中,它工作正常。我这样做了:
(function( window, undefined ) {
var jQuery = function( selector, context ) {
return new init( selector, context, rootjQuery );
}
var init=function( selector, context, rootjQuery ) {
...
}
...
})(...)
谢谢,
埃里克·J。