ExtJS-2.0.2
を使用して作成した iframe を持つ ExtJs を使用する html ページがありますExt.ux.ManagedIFrame
。iframe は Web/Wiki ページをロードし、現在、これらの子ページで「リンク」がクリックされるたびに、ブラウザ ウィンドウ全体を必要なリンクに置き換えます。ブラウザー ウィンドウではなく、同じ iframe で開かれているすべてのページを読み込みたいと思います。
私の子ページは、「a href」リンクを含む単純な html ページです。これはできますか?
Parent Page
head
body
...
...
iframe id="childiframe" (can't edit anything inside the iframe contents)
head
body
........
<a href="www.google.com">Go</a>
<!--
When you click on the above link rather redirecting the whole
browser to that link. I would just like the childiframe to reload
google.com
-->