标题 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;
}
···
网友评论