将网页嵌入到dialog中的方法

方法就是用iframe


 弹出页面 





$("#advertisingPage").dialog({
            		modal:true,
                        autoOpen:false,
                        width: 1000,
                        height:516,
                        resizable:false,
                        position:"center",
                        title:"关联广告",
                        buttons:
                        {
                            "关闭":function(){$(this).dialog("close");}
                        }
});
function showPage(){
       $("#advertisingPage").dialog("open");

}

你可能感兴趣的:(前端)