$.fn.hDialog = 기능(옵션) {
var 기본값 = {
너비: 300,
높이: 200,
제목: '此处标题',
html: '',
iconCls: '',
제출: 기능 () { Alert('可执行代码.'); }
}
var id = $(this).attr('id');
옵션 = $.extend(기본값, 옵션);
var self = this;
$(self).dialog({
제목: options.title,
높이: options.height,
너비: options.width,
iconCls: options.iconCls,
버튼: [{
텍스트: '确정',
iconCls: 'icon-ok',
handler: options.submit
}, {
text: '取消',
iconCls: 'icon-cancel',
핸들러: function () {
$('#' id).dialog('close')
}
}]
});
function createContent() {
$('.dialog-content',$(self)).empty().append('
');
$('#' id "_content").html(options.html);
}
createContent();
}
$(function(){
var d =$('
');
$('#d').hDialog({ submit:function(){$(d).dialog('close');}})
})