首页 > 技术文章 > 如何在一个页面调用另一个页面

liuyjui 2019-03-18 11:28 原文

利用iframe

<Iframe src="page1.html" width="250" height="200" scrolling="no" frameborder="0"></iframe>

<div class="swiper-slide" style="background:#add;">
    <Iframe src="page1.html" width="250" height="200" scrolling="no" frameborder="0"></iframe>
</div>
<div class="swiper-slide" style="background:#ccc;">
    <Iframe src="page2.html" width="250" height="200" scrolling="no" frameborder="0"></iframe>
</div>

 

推荐阅读