var o={};
(function(win,doc,$){
function Scroll_Bar(opt) {
this._init=opt;
}
Scroll_Bar.prototype._init= function () {
alert('test1')
}
o.Scroll_Bar=Scroll_Bar;
})(window,document,jQuery);
new o.Scroll_Bar();
没弹出来
(function(win,doc,$){
function Scroll_Bar(opt) {
this._init=opt;
}
Scroll_Bar.prototype._init= function () {
alert('test1')
}
o.Scroll_Bar=Scroll_Bar;
})(window,document,jQuery);
new o.Scroll_Bar();
没弹出来
2016-09-13