gpt4 book ai didi

JavaScript 未检测到移动设备并重定向

转载 作者:行者123 更新时间:2023-11-28 12:32:18 24 4
gpt4 key购买 nike

我希望能够确定设备是 Android 还是 iPhone,然后相应地重定向它。但是,当我测试它时,它不起作用它只是加载 html 文件。有什么想法为什么这行不通吗?而且我真的没有java脚本的经验。我主要专注于移动开发。我在 iPhone 和 Android 上打开了该网址,但都没有成功。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script>
var ua = navigator.userAgent.toLowerCase();
var isAndroid = ua.indexOf("android") > -1; //&& ua.indexOf("mobile");
if (isAndroid) {
// Do something!
// Redirect to Android-site?
window.location = 'http://espn.go.com/';
}

if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
if (document.cookie.indexOf("iphone_redirect=false") == - 1) window.location = "http://www.yahoo.com/;
}

</script>
<title>Redirect</title>
<script>
// google analytic code is here
</script>

Redirecting
</body>
</html>

最佳答案

设置document.location而不是window.location

document.location = "http://google.com"

更新

实际上,您仍然可以使用 window.location,只是错过了网址中的尾随 ":

错误:window.location = "http://google.com;
好:window.location = "http://google.com";

关于JavaScript 未检测到移动设备并重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20846323/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com