User Agent for Safari browser on iOS 7

后端 未结 3 1749
心在旅途
心在旅途 2021-02-05 14:01

I want to open my site only in iPhone and iPod with Safari browser. For any other browser like Chrome, Dolphin, etc, It shouldn\'t open.

But currently I am getting the s

3条回答
  •  借酒劲吻你
    2021-02-05 14:29

    Solves for mercury, opera, chrome n firefox but not dolphin

    (
      (/(iPad|iPhone|iPod)/gi).test(userAgent) &&
      !(/CriOS/).test(userAgent) &&
      !(/FxiOS/).test(userAgent) &&
      !(/OPiOS/).test(userAgent) &&
      !(/mercury/).test(userAgent)
    )
    

提交回复
热议问题