iframe截取网站部分内容实例

发布时间:2019-10-14编辑:脚本学堂
本文介绍了使用iframe截取网站部分内容的方法,主要配合width、height、overflow等属性实现,有需要的朋友参考下。

例子,使用iframe截取网站部分内容。
 

复制代码 代码示例:
<div style="width:630px;height:350px;overflow:hidden;border:0px">
<div style="width:800px;height:800px;margin:-810px 0px 0px -10px;">
<iframe src="http://www.jb200.com/" width="960" height="1280" scrolling="no"></iframe>
</div>
</div>
<div style="width:800px;height:900px;overflow:hidden;border:0px">
<div style="width:500px;height:900px;margin:-320px 0px 0px -10px;">
<iframe src="http://www.jb200.com/details/1.aspx" width="700" height="1024" scrolling="no"></iframe>
</div>
</div>