html 自动判断h5 跳转pc链接,手机打开不变
时间: 2023-09-08 18:16:49 浏览: 426
你可以使用以下的 HTML 代码,通过 JavaScript 判断用户是在手机上还是在 PC 上访问,然后自动跳转到相应的链接:
```html
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript">
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
// do nothing, stay on the same page
} else {
window.location.href = "pc.html";
}
</script>
</head>
<body>
<!-- Your website content here -->
</body>
</html>
```
这段代码会判断用户的设备是否是移动设备,如果是,就会显示原来的页面内容不变。如果用户在 PC 上访问,就会自动跳转到 pc.html 页面。
阅读全文