Detecting Microsoft's edge or spartan with javascript

前端 未结 5 1391
情深已故
情深已故 2021-01-03 22:15

Is the user agent for Edge or Spartan browsers known already? Can anyone tell me how to detect this browser and diferentiate it from IE in advance of its release?

5条回答
  •  不知归路
    2021-01-03 22:25

    Another feature-detection based option.

    function isBrowserEdge () {
        return typeof CSS !== 'undefined' && CSS.supports("(-ms-ime-align:auto)");
    }
    

提交回复
热议问题