我有这个html页面:
<div> this is the outside page </div>
<iframe id="ifr">
(#document node)
<html>
<p> a node within iframe </p>
</html>
</iframe>
将js加载到外部的页面中。如何通过在iframe中使用<iframe>元素来选择<p>对象?
大多数web资源都使用“从
我已经被困在这个问题上好几个小时了。
我在上有一个a.html,其中包含一个iframe,其中包含上的b.html的源。a.html有一些JS代码可以postMessage到iframe。
postMessage的代码很简单:
iframe_window.postMessage('message', iframe_element.src)
但是这样一来,Chrome会抛出一个错误:
Unable to post message to http://subdomain.example.com. Recipient has origin null.
我也尝试过:
iframe_wi