我正在尝试显示一个Jquery.dialog,其中有两个垂直显示的按钮,因为我正在进行移动视图。 ¿我该怎么做?
$('#divPopUpTiempoEspera').dialog({
minHeight: 'auto',
autoOpen: false,
resizable: false,
width:'260px',
modal: true,
buttons: {
"Inicio": function() {
//something
$('#divPopUpTiempoEspera').dialog('close');
},
"Misma búsqueda": function() {
//something
$('#divPopUpTiempoEspera').dialog('close');
}
}
});