jQuery-如何在当前主体上打开一个新主体?

时间:2019-03-22 04:21:01

标签: javascript jquery

我有一个这样打开的窗口:

enter image description here

当我单击“编辑”按钮时,应该打开一个与图片相似的窗口框,但它在同一帧上,但是如您所见,它在“当前”窗口框下方打开。

我的身体:

        //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
            });

是否有解决此问题的方法或其他更好的方法来解决此问题?

0 个答案:

没有答案