LoginSignup
3
0

More than 1 year has passed since last update.

Webブラウザの判定 ~社内で大不評の【誰得?】シリーズ~

Last updated at Posted at 2021-12-08

パーソンリンク アドベントカレンダー9日目です!🎉

内容

const UA = window.navigator.userAgent.toLowerCase();

if (UA.indexOf('msie') != -1 || UA.indexOf('trident') != -1) {
    console.log('IE');
} else if (UA.indexOf('edge') != -1) {
    console.log('Edge');
} else if (UA.indexOf('chrome') != -1) {
    console.log('Chrome');
} else if (UA.indexOf('safari') != -1) {
    console.log('Safari');
} else if (UA.indexOf('firefox') != -1) {
    console.log('Firefox');
} else if (UA.indexOf('opera') != -1) {
    console.log('Opera');
} else {
    console.log('None');
}

ブラウザによって内容変えたいのであればこれでいけるはず。

なにこのシリーズ

社内で不評なたまに呟く「誰の得になるの!?」シリーズです。

さようならー

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0