欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

js 判斷瀏覽器使用的語(yǔ)言示例代碼

 更新時(shí)間:2014年03月22日 17:47:22   作者:  
這篇文章主要介紹了使用js 判斷瀏覽器使用的語(yǔ)言,需要的朋友可以參考下
復(fù)制代碼 代碼如下:

<script type="text/javascript">
var language = navigator.browserLanguage?navigator.browserLanguage:navigator.language;
alert(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 = 'chinese.htm';
else
document.location.href = 'english.htm';
</script>

相關(guān)文章

最新評(píng)論