>我有 2 个网站,想让移动设备上的某人自动重定向到该网站。
我看过几个网站和视频,但我无法让它们工作
我希望它将移动用户重定向到移动站点,并将PC/Mac用户保留在普通站点上。
你可以使用简单的JavaScript代码。
if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|OperaMini/i.test(navigator.userAgent) ) {
//code to be executed on mobile
}
您可以检查屏幕尺寸是否小于699。
<script type="text/javascript">
if (screen.width <= 699) {
document.location = "mobile.html";
}
</script>