程式碼如下:
// boxy對話框擴充
var Boxy_Extensions = {
options: {
title: '藝吧提示',
closeText: 'x'
},
//彈出後N秒後隱藏
alertDelayFun: function (info, timer, options) {
options = $ .extend(this.options, options || {});
new Boxy("
" info "
", $.extend({ behaviours: function () {
setTimeout('$(".boxy-wrapper").hide();', timer);
}
}, options));
},
//彈出後,自動跳轉
alertHrefFun: function (info, href, options) {
options = $.extend(this .options, options || {});
new Boxy("
" info "
", $.extend({ behaviours: function () {
location.href = href;
}
因為options屬性是公用的,所以把它提了出現,而每個方法有自己的options,如果在調用自己方法時傳遞了options,透過$.extend會把它 與類別中options屬性的內容合併(覆蓋相關鍵的值,擴展新的鍵值),看來寫JS也應該遵循物件導向的原則呀,呵呵!