日期:2014-05-17  浏览次数:20422 次

父页面 获取iframe 代码 net
父页面 获取iframe 代码 
我想在父页面里分析iframe 页面代码
不能用js求高手 指教

还有一个问题 iframe 页面内容是js来生成的 怎么获取  不能用js

------解决方案--------------------
contents()
查找匹配元素内部所有的子节点(包括文本节点)。如果元素是一个iframe,则查找文档内容

--------------------------------------------------------------------------------

Find all the child nodes inside the matched elements (including text nodes), or the content document, if the element is an iframe.
返回值
jQuery

示例
查找所有文本节点并加粗 

HTML 代码:

<p>Hello <a href="http://ejohn.org/">John</a>, how are you doing?</p> 
jQuery 代码:

$("p").contents().not("[nodeType=1]").wrap("<b/>"); 
结果:

<p><b>Hello</b> <a href="http://ejohn.org/">John</a>, <b>how are you doing?</b></p> 

--------------------------------------------------------------------------------

往一个空框架中加些内容 

HTML 代码:

<iframe src="/index-blank.html" width="300" height="100"></iframe> 
jQuery 代码:

$("iframe").contents().find("body")   .append("I'm in an iframe!"); 
------解决方案--------------------
引用:
不能用js或jq


那就没有办法了,你可以去了解一下FF的内核
------解决方案--------------------
获取什么代码?html 代码吗?还是什么值