java - 微信支付宝支付开发用iframe成功后怎么跳出iframe。
迷茫
迷茫 2017-04-17 17:10:20
0
4
1299

微信内用支付宝支付被屏蔽了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呢,微信开发有点小头痛

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

reply all(4)
刘奇

You can write a function for the last click event,

if(window != top) {
    top.location.href = 你要跳转的页面
}

window.top.location.href = "your redirect url"; 
PHPzhong

Change window (only some places are omitted) to window.parent. If the code is from different domains, cross-domain problems must be solved. window(只是有些地方省略了)改成window.parent。如果是不同域的代码还要解决跨域的问题。

window.parent 就是其父窗口/父框架的window

window.parent is the window object of its parent window/parent frame. 🎜
巴扎黑
function returnStr(str)
{
    if($('#iframe1') != undefined && $('#iframe1') != null)
    $('#iframe1').remove();
       top.location.href = str;
}

Return to homepage>>

在成功或者是失败之后之后跳转的页面加上这个就行了,把首页或者是要跳转的链接传进去,remove掉iframe就行了
PHPzhong

Can I still open Alipay payment in WeChat now?

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template