为了账号安全,请及时绑定邮箱和手机立即绑定

用Python怎么得到网页中iframe的源代码?

用Python怎么得到网页中iframe的源代码?

炎炎设计 2019-05-21 14:10:01
用Python怎么得到网页中iframe的源代码
查看完整描述

4 回答

?
阿波罗的战车

TA贡献1862条经验 获得超6个赞

简单的做个例子,框架路径可以自己修改,调用像百度等网站时无法读取其中源码,涉及到一些安全问题,所以路径要求是合法的允许访问的路径 <script> function GetFrameInnerHtml(objIFrame) { var iFrameHTML = ""; if (objIFrame.contentDocument) { //针对netscape iFrameHTML = objIFrame.contentDocument.innerHTML; } else if (objIFrame.contentWindow) { // 针对ie5.5和ie6 iFrameHTML = objIFrame.contentWindow.document.body.innerHTML; } else if (objIFrame.document) { // For IE5 iFrameHTML = objIFrame.document.body.innerHTML; } return iFrameHTML; } </script> <iframe id="ifa" src="1.html" ></iframe> <input type="button" value="click" onclick="alert(GetFrameInnerHtml(document.getElementById('ifa')))"/>

查看完整回答
反对 回复 2019-05-25
?
慕的地6264312

TA贡献1817条经验 获得超6个赞

boolean tag = true;
configure:3527: error: in `/Users/niko/memcachedbuild/libevent-1.4.14-stable':
configure:3531: error: C compiler cannot create executables
See `config.log' for more details.

查看完整回答
反对 回复 2019-05-25
  • 4 回答
  • 0 关注
  • 1704 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信