Files
um-all-index-web/js/function.js
T
kevin a211c59e37 第一版
Signed-off-by: kevin <kevin@lmve.net>
2022-07-14 12:21:07 +08:00

69 lines
1.3 KiB
JavaScript

//调试模式
var debugmod=1;
//输出到控制台
function Printf(log)
{
if(debugmod==1)
{
console.log(log);
}
}
//获取GET值
function Get(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
var r = window.location.search.substr(1).match(reg);
if (r != null)
return unescape(r[2]);
return "";
}
//获取html
/*
如果在open方法中第三个参数async设置为false,则请求是同步进行的。
换句话说,JavaScript 执行在send()收到响应时暂停并恢复。有点像alert或prompt命令。
这是重写的示例,的第三个参数open是false:
*/
function Get_Html(url)
{
var request = new XMLHttpRequest();
request.open("get", url,false);
request.send();
if(request.status==200)
{
var html=request.response;
//Printf("status code:200\n"+html);
return html;
}else
{
Printf("Error Can't open the page! Status code: "+request.status);
return "";
}
}
//获取json
function Get_Json(url)
{
var html = Get_Html(url);
if (html!="") {
var json = JSON.parse(html);
//Printf(json);
return json;
}else
{
Printf("Error can't do it!");
return null;
}
}