当前位置: 首页 > 工具软件 > Wap-2-Go > 使用案例 >

wap端,history.go(-1)兼容问题

双恩
2023-12-01

 

页面返回按钮:

  今天遇到一个bug,点击“立即结算”,跳转到支付页面,支付页面有了返回按钮,点击返回按钮使用了history.go(-1),

   但是在safari浏览器发现再次点击“立即结算”,没有反应,于是就想到了history.go(-1)的兼容;最终结果如下:

 $('#goConLink').on('click', function() {
if (document.referrer == '') {
history.go(-1);
} else {
window.location.href = document.referrer;
}
});

转载于:https://www.cnblogs.com/fss226/p/5515118.html

 类似资料: