;(
function(
$){
var Box=function(
i){
var that
=this;
this.btn
=$(
i);
this.btn.
click(
function(){
that.
a();
})
};
Box.prototype.
a=function(){
alert(
111);
};
Box.
init=function(
i){
var that
=this;
i.
each(
function(){
new that(
$(
this));
})
};
window[
"Box"]
=Box;
})(jQuery);
转载请注明原文地址: https://www.6miu.com/read-71258.html