LoginSignup
10
11

More than 5 years have passed since last update.

JavaScriptでブラウザの言語設定を取ってくる

Last updated at Posted at 2013-08-07

jaとかenとか、頭2文字返してくれる。

/**
 *  ブラウザの言語設定
 *  
 *  @return     言語設定
 *
 */
var getLanguage = (function(){
    try{
        return (navigator.browserLanguage || navigator.language || navigator.userLanguage).substr(0,2);
    }catch(e){
        return undefined;
    }
})();
10
11
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
10
11