IE11 に騙されない UserAgent の判別
1832 ワード
IE11 に騙されない UserAgent の判別
2014.4.1 現在
IE11 は ua.indexOf("msie") > -1 が false を返してしまうのでした...
こうしておけばもう騙されないっ(・ん・)ノ
var isIE = function() {
var ua = window.navigator.userAgent;
var ie = ua.match(/MSIE/) || ua.match(/Trident/);
return ie? true: false;
}
これで全ての IE を判別できるはずです.
var ie = isIE();
if (ie) {/*IE だったときの処理*/}
Author And Source
この問題について(IE11 に騙されない UserAgent の判別), 我々は、より多くの情報をここで見つけました https://qiita.com/naoiwata/items/10e428fb756c4e79d9ff著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .