我的应用程序作为父应用程序的 IFrame 中的选项卡与其他应用程序集成。
我想阅读浏览器地址栏 URL。
是否可以阅读。
<iframe id="myIFrameID123" src="http://192.168.1.102:8080/om/om.html?ucode=" width="100%" height="600"></iframe>
并尝试访问父应用 URL
var search:String = ExternalInterface.call("window.location.search.toString");
var vars:URLVariables = new URLVariables(search);
如果可以读取地址栏 URL 就可以了……这两个应用程序都在不同的 JBOS 中运行。