How to Detect Mobile Browser Capability

后端 未结 2 481
轻奢々
轻奢々 2021-01-28 14:51

I have three different versions of a mobilized website, and as the market is flooded with more and more phones, I\'m struggling to keep up with knowing where to push them. I\'m

相关标签:
2条回答
  • 2021-01-28 15:30

    I'd use http://www.modernizr.com/ Modernizr to detect the capabilities in the client, and then redirect to a different location in case support is insufficient for the current fidelity-level.

    If there is no CSS/JS support at all, you're pretty much screwed when it comes the client-side part. You'll have to resort to things like useragent sniffing... but then, nearly all phones have at least rudimentary CSS support, even the fairly old models.

    0 讨论(0)
  • 2021-01-28 15:40

    You may find this useful:

    • Server-side capability detection for mobile devices
    • How to serve the right content to mobile browsers
    • Standard way to detect mobile browsers in a web application
    0 讨论(0)
提交回复
热议问题