在寫公司的組件庫,寫到彈框的時候產(chǎn)生了一個問題var alert = function(html){ this.html = html
}
alert.prototype.show = function(){
}
alert.prototype.hide = function(){
}var alert = {
show: function(html){
},
hide: function(){
}
}因?yàn)榇笮晚撁婵赡軙?jīng)常需要創(chuàng)建這樣的彈窗,所以想問這兩種方式哪個更好一些,比如占用內(nèi)存等方面,還有想問下有沒有關(guān)于寫這種組件或者設(shè)計模式的書或文章推薦?
問一個性能方面的問題
臨摹微笑
2018-09-07 13:15:42