$('#dialog').dialog({

modal:true

,title:'확인'

,dialogClass:'dialog'

,width:'auto'

,position: ({

  my: "center",

  at: "center",

  of: window

})

,buttons:{

'예': function(){

$(this).dialog("close");

if(fnObj1!=undefined && fnObj1!=null){

        $(fnObj1);

        }

}

,'아니오': function(){

$(this).dialog("close");

if(fnObj2!=undefined && fnObj2!=null){

        $(fnObj2);

        }

}

,'취소': function(){

$(this).dialog("close");

if(fnObj3!=undefined && fnObj3!=null){

        $(fnObj3);

        }

}

}

,open: function (event, ui) {

$(':button.ui-dialog-titlebar-close').focus();

        }

   });



블로그 이미지

왕왕왕왕

,