我有一个要求,我需要从邮件中的链接启动一个应用程序,该应用程序适用于 android 和 iphone
我尝试从邮件中的链接重定向到网页,然后我将打开基于 os 的应用程序,但这在 ios 中运行良好,而不是在 android 中。我附上了代码
$(document).ready(function() {
if (navigator.userAgent.indexOf('iP') != -1) {
setTimeout(function() {
document.location = 'http://www.test.com';
}, 300);
self.location = "testapp://";
} else if (navigator.userAgent.indexOf('Android') != -1) {
document.location = 'http://www.test.com';
} else {
alert('windows');
}
});
任何想法......我在这个要求上打破了一个星期......