【发布时间】:2014-10-18 12:42:20
【问题描述】:
我在表单中使用了 Google Login API。登录用户后,我使用window.location.href 将用户重定向到另一个页面,但在iPad 和iPhone 中不起作用。
window.location.href = "http://example.com/test";
【问题讨论】:
标签: javascript ios mobile
我在表单中使用了 Google Login API。登录用户后,我使用window.location.href 将用户重定向到另一个页面,但在iPad 和iPhone 中不起作用。
window.location.href = "http://example.com/test";
【问题讨论】:
标签: javascript ios mobile
如下图删除href
window.location = "http://example.com/test";
【讨论】: