iframe获得内容,如何获得页面的中间部分?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iframe获得内容,如何获得页面的中间部分?相关的知识,希望对你有一定的参考价值。
默认是获得批量页面的整个内容。
我想设置只获得批量页面的中间部分内容。上和下的内容不想获取到iframe框架里面。如果设置参数
先建一个a.htm:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title></title>
</head>
<body>
<iframe src="http://zhidao.baidu.com/question/146961890.html" width="980" height="700" frameborder="0" scrolling="no" style="position: absolute; top: -120px; left: -680px;"></iframe>
</body>
</html>
然后再建一个页面b.htm:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<iframe src="a.htm" width="300" height="230" frameborder="0" scrolling="no"></iframe>
</body>
</html>
打开b.htm就只显示一小块了。
方法二:当然你也可以只用一个页面,但会有些问题,用户点住鼠标往下拉的时候页面会往下走,而且如果你登陆后下方的好友列表会出现在页面上,下面的是代码:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<iframe src="http://zhidao.baidu.com/question/146961890.html" width="980" height="350" frameborder="0" scrolling="no" style="position: absolute; top: -110px; left: -680px;"></iframe>
</body>
</html> 参考技术A 方法一:用两个iframe就可以实现了,比如获取这个页面右边的“分类上升达人排行榜”这一小块:
先建一个a.htm:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title></title>
</head>
<body>
<iframe src="http://zhidao.baidu.com/question/146961890.html" width="980" height="700" frameborder="0" scrolling="no" style="position: absolute; top: -120px; left: -680px;"></iframe>
</body>
</html>
然后再建一个页面b.htm:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<iframe src="a.htm" width="300" height="230" frameborder="0" scrolling="no"></iframe>
</body>
</html>
打开b.htm就只显示一小块了。
方法二:当然你也可以只用一个页面,但会有些问题,用户点住鼠标往下拉的时候页面会往下走,而且如果你登陆后下方的好友列表会出现在页面上,下面的是代码:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<iframe src="http://zhidao.baidu.com/question/146961890.html" width="980" height="350" frameborder="0" scrolling="no" style="position: absolute; top: -110px; left: -680px;"></iframe>
</body>
</html> 参考技术B 应该没有这样的设置。
首先你应该明确iframe的作用,它只是用来显示页面内容的,内容的操作它是不肯能有的。
建议你使用js来实现即可。
以上是关于iframe获得内容,如何获得页面的中间部分?的主要内容,如果未能解决你的问题,请参考以下文章