function jQuery(){
return new jQuery.prototype.init();
}
jQuery.prototype.init = function(){
console.log("initializing");
}
jQuery.prototype.css = function(){
console.log("css");
}
jQuery.prototype.init.prototype = jQuery.prototype;
var testJ = new jQuery();
testJ.css();
时间: 2024-10-12 21:05:24