How to detect IE 11 with javascript in Asp.net

后端 未结 10 1907
暖寄归人
暖寄归人 2020-12-01 05:04

Hello I want to detect the Browser , IE 8 or more will be appropriate for me. For this i used following code but it fails for IE 11 . For other its detecting properly.

10条回答
  •  隐瞒了意图╮
    2020-12-01 05:08

    I used the following code recently to detect IE in general and it worked just fine for IE 11 as well

    var bs = document.body.style, isIE=false;
    if ('msTransition' in bs) {
            isIE = true;
    }
    

    The idea is to look for vedor prefix.

提交回复
热议问题