JavaScript 獲取瀏覽器的所使用語言

antzone發表於2019-05-06

本章節分享一段程式碼例項能夠獲取當前瀏覽器所使用的語言,比如使用的簡體中文還是使用的其他語言。

程式碼例項如下:

[JavaScript] 純文字檢視 複製程式碼
var language=navigator.browserLanguage?navigator.browserLanguage:navigator.language; 
if(language.indexOf('en')>-1) document.location.href='english.htm'; 
else if (language.indexOf('nl') > -1) document.location.href = 'dutch.htm'; 
else if (language.indexOf('fr') > -1) document.location.href = 'french.htm'; 
else if (language.indexOf('de') > -1) document.location.href = 'german.htm'; 
else if (language.indexOf('ja') > -1) document.location.href = 'japanese.htm'; 
else if (language.indexOf('it') > -1) document.location.href = 'italian.htm'; 
else if (language.indexOf('pt') > -1) document.location.href = 'portuguese.htm'; 
else if (language.indexOf('es') > -1) document.location.href = 'Spanish.htm'; 
else if (language.indexOf('sv') > -1) document.location.href = 'swedish.htm'; 
else if (language.indexOf('zh') > -1) document.location.href = 'http://www.softwhy.com'; 
else
document.location.href='english.htm';

程式碼非常的簡單這裡就不多介紹了,可以參閱相關閱讀。

相關閱讀:

(1).document.location.href參閱location.href 屬性一章節。 

(2).navigator.browserLanguage參閱Navigator.browserLanguage 屬性一章節。 

相關文章