开发者

Page inside another page

开发者 https://www.devze.com 2023-03-28 00:36 出处:网络
When i click Wikimapia\'s objects, the page shows object\'s info to me. How do i load a page开发者_如何学Go inside another page like this?You could either load the response from an ajax call inside a

When i click Wikimapia's objects, the page shows object's info to me. How do i load a page开发者_如何学Go inside another page like this?


You could either load the response from an ajax call inside a div or use an iframe. It looks like wikimapia itself uses an iframe wrapped inside a div.

<style>
#iframe_wrapper{
    position:absolute;
    top:20px;
    left:50%;
    margin-left:-150px;
}
</style>
<div id='iframe_wrapper'>
    <iframe src='http://www.google.com'></iframe>
</div>
0

精彩评论

暂无评论...
验证码 换一张
取 消