scrollTo.js を実行している親ページがあります。スクロールする 4 つのパネルがあり、各パネルには iframe 形式のコンテンツがあります。各 iframe コンテンツは、前の iframe 内のリンクによって生成されます。問題: iframe から親関数を呼び出すにはどうすればよいですか?
親:
<a href="#item2" class="panel" onclick="ipage.location='jam2.html'">home made jam</a> |
<a href="#item2" class="panel" onclick="ipage.location='away.html'">international
flavour</a>
iframe:
<a href="" onclick="parent.ipage2.location='local.html'">local produce</a> | <a href=""
onclick="parent.ipage2.location='specials.html'">specials</a> | <a href=""
onclick="parent.ipage2.location='international.html'">world ingredients</a>