2

我有 iframe 的问题。

我想从 iframe 的内容中获取父对象或父节点。

我的代码:

一个.html:

<html>
<head>
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
</head>
<body>
<div>

    <input type="button" value="click me" onClick="parent.getIframe(document);"/>
</div>
</body>
</html>

索引.php:

<html>
<head>
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script>
var getIframe = function(obj){
   // Iframe Element = $(obj).parent();
   //or some things likes this.
}
</script>
</head>
<body>
<div>
   <div id="myId">
        <iframe src="a.html"></iframe>
    </div>
</div>
</body>
</html>

现在我想当我点击“点击我”按钮时。我想通过 iframe 的文档对象获取 HTMLIFRAME 对象元素。

我需要你的帮助。

4

1 回答 1

2

您可以使用以下两个属性:

contentDocument - Returns the document object generated by a frame/iframe
contentWindow -   Returns the window object generated by a frame/iframe

检查此参考

于 2012-10-15T05:34:40.370 回答