標題 markdown
1.有序
- 無序
- 超鏈接
百度
3.圖片
妹子
4.列表
號碼 | 名字 |
---|---|
17605878675 | 丁國棟 |
5.名言引用
Will, work and wait are the pyramidal cornerstones for success.意志、工作和等待是成功的金字塔的基石
6.代碼引用
···
/**
* base64網速檢測標記
* 超時次數變量 BOT
* 初始:0
* 范圍:0-6
* 變換規則:
* 每次超時,BOT +1;
* 每次正常:BOT -1;
* 到達邊界值時,不再繼續增加/減少
* 如何使用:(未上線)
* BOT大于3時,設置cookie: B64_BOT=1,VUI針對本次請求,讀cookie,如果B64_BOT=1,關閉base64服務
* 當BOT小于3時,設置cookie: B64_BOT=0,VUI正常開啟base64服務。
/
var botTag = {
ot : function(isInc){
var _bottag = botTag.get();
if(isInc){
if(_bottag<6){
_bottag++;
}
}else{
if(_bottag>0){
_bottag--;
}
}
if( _bottag>=2 ){
var date = new Date();
date.setTime(date.getTime() + 24360010005);
//此處設置cookie
document.cookie = "B64_BOT=1; expires=" + date.toGMTString();
//_bottag = 0;
}else if( _bottag<1 ){
if(document.cookie.match('B64_BOT=1')){
document.cookie = "B64_BOT=0;";
}
}
try{
if(window.localStorage){
window.localStorage[_BOTTAGLSNAME] = _bottag;
}
}catch(e){}
},
get : function(){
try{
if(window.localStorage){
var _bottag = window.localStorage[_BOTTAGLSNAME];
_bottag = _bottag?parseInt(_bottag):0;
}else{
return 0;
}
return _bottag;
}catch(e){
return 0;
}
···