标签: javascript iframe angular-ui-router
在iFrame中付款后,付款后我需要打破iFrame并更改首页的状态,即SPA。 我可以使用以下javascript代码段
if( self == top ) { document.documentElement.style.display = 'block' ; } else { top.location = self.location ; }
然后我得到一张空白页面,不属于我的SPA。 请adice