1
嘗試擴展小部件後,銷燬並重新創建小部件似乎不起作用。在jQuery UI擴展小部件後銷燬不起作用1.8
$.widget("ui.specialDialog", $.ui.dialog, {
_create: function() {
$.ui.dialog.prototype._create.call(this);
}
});
$('#warningDialog').specialDialog();
$('#warningDialog').specialDialog('destroy');
$('#warningDialog').specialDialog();
// the dialog does not show up here
$('#warningDialog').dialog();
$('#warningDialog').dialog('destroy');
$('#warningDialog').dialog();
// this works
擴展窗口小部件時我在這裏錯過了什麼嗎?