보조 패키지의 easyui-Dialog 플러그인 구현 코드

1327 단어

$.fn.hDialog = function (options) {
var defaults = {
width: 300,
height: 200,
title: ' ',
html: '',
iconCls: '',
submit: function () { alert(' .'); }
}
var id = $(this).attr('id');
options = $.extend(defaults, options);
var self = this;

$(self).dialog({
title: options.title,
height: options.height,
width: options.width,
iconCls: options.iconCls,
buttons: [{
text: ' ',
iconCls: 'icon-ok',
handler: options.submit
}, {
text: ' ',
iconCls: 'icon-cancel',
handler: 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');}});
})

좋은 웹페이지 즐겨찾기