iframe に問題があります。
親オブジェクトまたは親ノードを iframe のコンテンツから取得したい。
私のコード:
a.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>
index.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>
今、私は「クリックしてください」ボタンをクリックしたときに欲しいです。HTMLIFRAMEオブジェクト要素をiframeのドキュメントオブジェクトで取得したい。
あなたの助けが必要です。