将网页嵌入到dialog中的方法

方法就是用iframe


<a onclick= "showPage()"  href ="请求的页面路径" target = "adPageFrame" id="showAdList"><strong> 弹出页面 </strong></a>

<div id="advertisingPage">
            <iframe name="adPageFrame" scrolling=auto width="100%" height="400px" frameborder=0 ></iframe>
</div>




$("#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");

}

你可能感兴趣的:(将网页嵌入到dialog中的方法)