标签: javascript ios mobile
我在表单中使用了Google Login API。登录用户后,我使用window.location.href将用户重定向到另一个页面,但它在iPad和iPhone中无效。
window.location.href
iPad
iPhone
window.location.href = "http://example.com/test";
答案 0 :(得分:3)
删除href,如下所示
href
window.location = "http://example.com/test";