iframeが同じドメインにない場合でもの親関数を呼び出すことは可能ですか??私はこれだろうIFrameコールの親関数
<script>
function test()
{ alert('wow');
}
</script>
<iframe src="...."></iframe>
とiframe内: 私の実際のアプローチは、彼らが同じドメイン上にないセキュリティエラーリフト
<script>
function fin()
{ top.test(); }
</script>
多くの感謝:)
Dupe http://stackoverflow.com/questions/4122422/cross-domain-hash-change-communication – tkone