本来这个帖子是发在世界之窗论坛的,http://bbs.ioage.com/cn/thread-100149-1-1.html 还真有朋友帮哦结局了,呵呵,在此也谢过那个好盆友^_^,他/她的博客是http://sofuc.com/
自己做了一个网页,想引用一下凤凰网的人民币汇率数据,实时显示,可是不知道如何用frame,就是这个网址http://app.finance.ifeng.com/hq/rmb/list.php
只要引用嵌套这个图里的部分:不包含原网页的导航部分的,只保留“人民币汇率”那一行及其以下的实时数据部分
http://sofuc.com/这个朋友帮我给出了很好的解决答案:
有时需要在网页中使用框架<iframe>来调用另一个网页,一般是显示另一个网页的全部....
例如:我要显示"人民币汇率",如下代码所示:
Code
<iframe name="iframe1" marginwidth="0" marginheight="0" width="932" vspace="0" hspace="0" align="middle" height="780" scrolling="no" border="0" frameborder="0" src="http://app.finance.ifeng.com/hq/rmb/list.php" ></iframe>
蓝色部分就是要嵌套的网页网址了.
如果要让iframe只显示网页某位置,如下图,我只需要数据部分,而不要他的导航.
Code
1 修改后的最终代码:
2
3 <center> //在此加了个<center>可以让整个框架居中显示
4 <iframe name="I1" marginwidth="0" marginheight="0" width="935" vspace="-100" hspace="0" align="middle" height="640" scrolling="no" border="0" frameborder="0" src="http://app.finance.ifeng.com/hq/rmb/list.php" ></iframe>
5
6 演示效果:http://files.getdropbox.com/u/949762/huilv.html
7 附带一段公司近期用上的代码,跟同行做合作,我需要同行网页上的一段跟踪记录,但是他又不给接口,我又不想要它的导航条。所以我亲手写这段代码。
代码如下:
Code
<html>
<head>
<title>
链接苏通物流页面的一部分跟踪记录
</title>
</head>
<body>
<center>
<iframe name="I1" marginwidth="0"
marginheight="0" width="900"
vspace="-350" hspace="-750"
align="middle" height="500"
border="0" frameborder="0"
src="http://sut56.vicp.net/web/sear
ch.asp?id=5454654654" ></iframe>
</center>
</body>
</html>
本人从事物流快递行业,有同道中人,相互探讨 QQ:313315714
代码
1 <iframe name="I1" marginwidth="0" marginheight="0" width="1024" vspace="-258" hspace="0" align="middle" height="10000" scrolling="no" border="0" frameborder="0" src=" http://r8972.asktang.com/goodsn.php? id=1335">
2 </iframe>