我有一个这样打开的窗口:
当我单击“编辑”按钮时,应该打开一个与图片相似的窗口框,但它在同一帧上,但是如您所见,它在“当前”窗口框下方打开。
我的身体:
//function to call the edit the page
function editURL(){
var x;
$('body').pWin("open", {
x: 500,
y: 500,
height: 650,
width: 681,
title: "Edit:Advance configuration",
skinMode:'dialog',
iframe:true,
url: "editUrl.jsp",
data: {
filename:x
},
offResize:true,
offMove:true,
onTitle:false,
offBottom:true
});
是否有解决此问题的方法或其他更好的方法来解决此问题?