jquery dialog

<div id="dialog" title="提示">
<p>确定收回此次委托吗?</p>
</div>
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
$( "#dialog" ).dialog({
autoOpen: false,
resizable: false,
height:140,
modal: true,
buttons: {
"是": function() {
$( this ).dialog( "close" );
},
"否": function() {
$( this ).dialog( "close" );
}
}
});

$(".recycle").click(function(){
$("#dialog").dialog("open");
});



posted @ 2017-10-09 10:45  地表热浪  阅读(107)  评论(0编辑  收藏  举报