从 Windows 服务器上的静态 HTML 页面检测移动设备
我需要在静态 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这取决于您在检测后期望做什么。如果您只想更改 HTML 页面的样式,只需在 HTML 标头部分添加不同的 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.
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.