0
中的jQuery對話框不在中間,對話框在中心位置縮小,但在Chrome中位於左側。在FF和Internet Explorer中,Chrome瀏覽器中的Chrome瀏覽器
我該如何解決這個問題?
代碼(self
是,這是在對象):
$('form').live('submit',function(e){
e.preventDefault();
var $this = this;
console.log('click submit')
$('<div>',
{html: 'Are you sure you want to submit this table?<br/> All undo information will be lost.'})
.dialog({
modal: true,
title: 'Are You Sure?',
buttons: {
ok: function(){
$.get($this.action,$($this).serialize()+'&page='+self.pageOn,function(data){
console.log(data);
self.pageChanged = false;
self.origPage = $('#page').clone();
self.lastClick = $('#page').clone();
})
$(this).dialog('close');
},
cancel: function(){
$(this).dialog('close');
}
},
beforeClose: function(){
$(this).remove();
}
})
return false;
})
thnx^_ ^似乎工作時,我將它應用到窗口小部件元素 – Neal 2011-04-12 18:33:49
在我的情況下,對話框水平居中,但出現在頂部。 我添加了'position:'center''選項,但不起作用。有任何想法嗎? – zur4ik 2014-04-27 01:13:49