iframe中的jquery ui modal dialog 覆盖父窗口

 function openDialog(){
        var $doc;
        if(window.location!=window.parent.location){// 页面在iframe中
            $doc=window.parent.jQuery.noConflict();
        }else{// 页面单独打开
            $doc=jQuery.noConflict();
        }
        $doc("body").append('<div id=dialog></div>');
        var dialog=$doc("#dialog");
        dialog.html("欢迎你");
        dialog.dialog( {modal: true});

    }

 

你可能感兴趣的:(jQuery UI)