-
Notifications
You must be signed in to change notification settings - Fork 0
/
https.html
63 lines (62 loc) · 1.97 KB
/
https.html
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
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
</body>
</html>
<script>
console.log(aa);
/* function ajax(opt) {
opt = opt || {};
opt.method = opt.method.toUpperCase() || 'POST';
opt.url = opt.url || '';
opt.async = opt.async || true;
opt.data = opt.data || null;
opt.success = opt.success || function () {};
var xmlHttp = null;
if (XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
}
else {
xmlHttp = new ActiveXObject('Microsoft.XMLHTTP');
}
var params = [];
for (var key in opt.data){
params.push(key + '=' + opt.data[key]);
}
var postData = params.join('&');
if (opt.method.toUpperCase() === 'POST') {
xmlHttp.open(opt.method, opt.url, opt.async);
xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded;charset=utf-8');
xmlHttp.send(postData);
}
else if (opt.method.toUpperCase() === 'GET') {
xmlHttp.open(opt.method, opt.url + '?' + postData, opt.async);
xmlHttp.send(null);
}
xmlHttp.onreadystatechange = function () {
if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {
opt.success(xmlHttp.responseText);
}
};
}
ajax({
method: 'POST',
url: 'http://testapi.xinxuewen.cn/Res/reslist?api=Res.reslist&app_key=218fbc52&verson=1.0&t=1521531497&sig=61c5c37464d15455db1835a35586d562&sv=0',
data:{
type:1,
usertoken:'MDAwMDAwMDAwMK6Fp6yEd3VjhHSOq32memyAd4Srfs56s4KdiKSNYtGrumO8jZiKaG8',
class_level:'A2',
page:1,
page_size:12
},
success:function (res) {
res=JSON.parse(res);
console.log(res);
}
});*/
let aa='q'
</script>