原理:用javascript识别操作系统语言来切换网页语言。
兼容浏览器:IE、火狐、chrome、safari等主流浏览器
相关代码:
<script language=javascript>
var sysLan = (navigator.language || navigator.browserLanguage).toLowerCase();
if(sysLan != 'zh-cn') {
alert('en');
window.location.href="http://www.chengxusheji.com/en/index.html";
} else {
alert('cn');
window.location.href="http://www.chengxusheji.com/cn/index.html";
}
</script>
根据ip库判断用户ip例子:http://www.yemiansheji.com/ip/