从 Windows 服务器上的静态 HTML 页面检测移动设备

发布于 2024-11-04 23:32:28 字数 128 浏览 0 评论 0原文

我需要在静态 HTML 网站上实现移动设备检测。 JavaScript 不是一个选项,因为许多设备已禁用它或不支持它。该站点位于 Windows 服务器上,由于我通常使用 LAMP 堆栈,因此我不确定我的选择是什么。任何帮助将不胜感激,谢谢!

I need to implement mobile device detection on a static HTML website. JavaScript isn't an option since many devices have it disabled or don't support it. The site is on a Windows server and as I normally work with a LAMP stack I'm not sure what my options are. Any help would be much appreciated, thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

把人绕傻吧 2024-11-11 23:32:28

我认为这取决于您在检测后期望做什么。如果您只想更改 HTML 页面的样式,只需在 HTML 标头部分添加不同的 CSS 文件即可。

<link rel="stylesheet" type="text/css" media="screen" href="screen.css" />
<link rel="stylesheet" type="text/css" media="handheld" href="mobile.css" />

当用户使用标准显示器浏览时,第一行会将 screen.css 应用到您的网页。使用移动设备浏览时将应用第二行。

除了简单的样式更改之外,我认为您不能对静态 HTML 做太多事情。

I think it's depends on what do you expect to do after the detection. If you you only want to change the style of your HTML page, you can just add different CSS files in your HTML header section.

<link rel="stylesheet" type="text/css" media="screen" href="screen.css" />
<link rel="stylesheet" type="text/css" media="handheld" href="mobile.css" />

The first line will applied screen.css to your web page when user browse with standard monitor. The second line will be applied when browsing with a mobile device.

Other than simple style changes, I don't think you can do too much on static HTML.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文