方法就是用iframe
<a οnclick= "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");
}