How do I target only Internet Explorer 10 for certain situations like Internet Explorer-specific CSS or Internet Explorer-specific JavaScript code?

前端 未结 25 2617
谎友^
谎友^ 2020-11-22 06:19

How do I target only Internet Explorer 10 for certain situations like Internet Explorer-specific CSS or Internet Explorer-specific JavaScript code?

I tried this, but

25条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-22 06:31

    If you must do this, you can check the user agent string in JavaScript:

    var isIE10 = !!navigator.userAgent.match(/MSIE 10/);
    

    As other people have mentioned, I'd always recommend feature detection instead.

提交回复
热议问题