$('#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();
}
});
'JAVA > Jquery' 카테고리의 다른 글
jquery 쿠키조회 (0) | 2016.12.09 |
---|---|
jquery 하루동안 팝업안보이게하는 쿠키함수 (0) | 2016.12.09 |
jquery ajax 기본형태 (0) | 2016.12.08 |
jquery 취소이벤트에 의한 폼초기화 (0) | 2016.12.08 |
jquery input태그 자동넘기기(핸드폰번호,팩스번호 등) (0) | 2016.12.08 |