소스 검색

Update webajax.js

tags/6.1.7
xushubieli 3 년 전
부모
커밋
9b911a1e36
1개의 변경된 파일2개의 추가작업 그리고 6개의 파일을 삭제
  1. +2
    -6
      src/static/js/webajax.js

+ 2
- 6
src/static/js/webajax.js 파일 보기

@@ -1,10 +1,7 @@
// 建议采用现代浏览器内置的fetch替换现有的webajax.js

//建议采用现代浏览器内置的fetch替换现有的webajax.js
function $DE(id) {
return document.getElementById(id);
}


//读写cookie函数
function GetCookie(c_name)
{
@@ -24,10 +21,9 @@ function GetCookie(c_name)
}
return null
}

function SetCookie(c_name,value,expiredays)
{
var exdate = new Date();
exdate.setDate(exdate.getDate() + expiredays);
document.cookie = c_name + "=" +escape(value) + ((expiredays == null) ? "" : ";expires=" + exdate.toGMTString()); //使设置的有效时间正确。增加toGMTString()
}
}

불러오는 중...
취소
저장