ExtJS - 2.0.2
我有一个使用 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
-->