我有 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 对象元素。
我需要你的帮助。