Maison > Questions et réponses > le corps du texte
微信内用支付宝支付被屏蔽了url,我在jsp中用iframe,<iframe id="iframe1" src="${redirectURL }" width="100%;" height="100%;" name="main" onload="load()"></iframe>
支付成功之后无法跳出iframe,如果点继续支付相当于又嵌套了一个iframe,怎么能跳出iframe呢?
将答案转移到问题区域
成功之后iframe页中有个a标签链接 <a href="/">返回首页</a>
。但是点了这个链接之后还在这个iframe中,我现在就是想不让他在iframe中,我用这种方式<a href="javascript:;" onclick="window.parent.location.href='/'">返回首页</a>
依然还是在iframe中,您有部分代码么?万分感谢,我也可以监控跳到这个页的url,但是取到url之后怎么操作呢,怎么能跳出这个iframe呢,微信开发有点小头痛
怪我咯2017-04-17 17:12:20
你可以给最后那个点击事件写一个函数,
if(window != top) {
top.location.href = 你要跳转的页面
}
window.top.location.href = "your redirect url";
PHPz2017-04-17 17:12:20
把window
(只是有些地方省略了)改成window.parent
。如果是不同域的代码还要解决跨域的问题。
window.parent
就是其父窗口/父框架的window
对象。
巴扎黑2017-04-17 17:12:20
function returnStr(str)
{
if($('#iframe1') != undefined && $('#iframe1') != null)
$('#iframe1').remove();
top.location.href = str;
}
返回首页>>
在成功或者是失败之后之后跳转的页面加上这个就行了,把首页或者是要跳转的链接传进去,remove掉iframe就行了