我已经编写了这段代码,但它不起作用。
$("#dialog-confirm").text("Do you want to submit the new vendor for approval?");
$( "#dialog-confirm" ).dialog({
resizable: true,
title:"Submit",
height:170,
zIndex:99999,
modal: true,
position: "center",
buttons: {
"Yes": function() {
$( this ).dialog( "close" );
return false;
},
"No": function() {
$( this ).dialog( "close" );
return false;
}
}
});
请帮忙。