左梓惠 发表于 2018-4-20 19:07:57

根据系统操作语言跳转到指定的网站


根据系统操作语言跳转到指定的网站
<script>
var type=navigator.appName
if (type=="Netscape")
var lang = navigator.language
else
var lang = navigator.userLanguage

//cut down to first 2 chars of country code
var lang = lang.substr(0,2)

// 英语
if (lang == "en")
window.location.replace('http://123.com/')

// 简体中文
else if (lang == "zh-cn")
window.location.replace("http://www.baidu.com/")

// 繁体中文
else if (lang == "zh-tw")
window.location.replace('http://456.com/')

// 德语
else if (lang == "de")
window.location.replace('http://789.com/')
// 除上面所列的语言
else
window.location.replace('http://abc.com/')

</script>

页: [1]
查看完整版本: 根据系统操作语言跳转到指定的网站