其他人有这个问题,你知道如何解决这个问题吗?
我的代码:
var currentFormconfirm;
$(function () {
$("#dialog-confirm-confirm").dialog({
resizable: false,
height: 220,
width: 400,
modal: true,
autoOpen: false,
buttons: {
'Yes': function () {
$(this).dialog('close');
currentFormconfirm.submit();
},
'Cancel': function () {
$(this).dialog('close');
}
}
});
$(".confirm").click(function () {
currentFormconfirm = $(this).closest('form');
$("#dialog-confirm-confirm").dialog('open');
return false;
});
});
答案 0 :(得分:2)
使用Jquery.js
和.css
答案 1 :(得分:1)
我也有这个问题。我的解决方案:
$('#dlg')
.dialog('open')
.dialog({position:'center'}); //UI Dialog positioning error