宋佳乐|抖音账号
抖音主要记录个人日常碎片,生活随拍、日常感悟,分享真实的生活点滴,欢迎前往主页看一看。
点击卡片跳转抖音主页|抖音APP扫一扫二维码访问
请将以下代码加入到网页中
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>检测设备类型并跳转</title>
<script>
function detectDevice() {
let ua = navigator.userAgent;
let mobile = ua.match(/Android|webOS|iPhone|iPad|iPod|BlackBerry|Windows Phone|IEMobile/i);
if (mobile) {
window.location.href = "/m.html";
} else {
window.location.href = "/so.html";
}
}
</script>
</head>
<body onload="detectDevice()">
</body>
</html>




1 条评论
我要评论 / 展开表单