目前尚未找到按坐标来控制的办法,只有采用按顶、左、右边跑的方法来控制,因此要制作一个文件来完全调用目标网页内容,然后再在需要调用指定内容的地方使用iframe代码调用。
1 2 3 4 5 6 7 8 |
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>无标题文档</title> </head> <body> <iframe src="目标网址" width="980" height="700" frameborder="0" scrolling="no" style="position: absolute; top: -120px; left: -680px;"></iframe> </body> </html> |
这个页面用iframe框架引用了目标页面,并且用CSS定位设定了框架浮动位置(top: -120px; left: -680px)。当然也可以按右边距控制,如right:680px,距离大小可以根据情况调整,直到调整到合适的位置。
1 |
<iframe src="frame/files.html" width="300" height="230" frameborder="0" scrolling="no"></iframe> |
javascript调用代码:
1 2 |
document.writeln("<iframe src=\"frame/files.html\" width=\"300\" height=\"230\" frameborder=\"0\" scrolling=\"no\"></iframe> "); |
高宽可以根据情况调整,为了使调用的内容正常、正确显示的我们设定的位置,大家可以修改files.html里的边距控制量以达到最佳效果。
转载请注明:天狐博客 » iframe调用网页的指定部分