Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

libai / fireflyReg

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • fireflyReg
  • lib
  • logLang.js
Find file
BlameHistoryPermalink
  • libai's avatar
    测试 · 8e24e39a
    libai committed a year ago
    8e24e39a
logLang.js 1.15 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
var langList = [
    {

    },
    {
        
    }
]


var langType = 0;
var langCon = getRequest().lang;
if (langCon == undefined || langCon == 'undefined') {
	langCon = sessionStorage.lang;
}
//当没有语言参数时 默认
if (langCon == undefined || langCon == 'undefined') {
	langCon = 2;
}
sessionStorage.lang = langCon;


var $ip = "https://webserver.yabolive.net";
var cdn = 'https://zhibocdn.yabolive.net/comm';



// 0,2 繁中 1英语 7阿语  3泰语 8越南语  4日语 5印尼文 9韩语
if (langCon == 0 || langCon == 2) {
	langType = 0;
} else if (langCon == 7) {
	langType = 2;
} else if (langCon == 8) {
	langType = 4;
} else if (langCon == 3) {
	langType = 3;
} else if (langCon == 4) {
	langType = 5;
} else if (langCon == 5) {
	langType = 6;
}else if (langCon == 9) {
	langType = 7;
}  else {
	langType = 1;
}
//獲取url參數
function getRequest() {
	var url = location.href;
	var theRequest = new Object();
	if (url.indexOf("?") != -1) {
		var str = url.substr(url.indexOf("?") + 1);
		strs = str.split("&");
		for (var i = 0; i < strs.length; i++) {
			theRequest[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]);
		}
	}
	return theRequest;
}