赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 56 |
经验 | 1174 |
最后登录 | 2024-6-20 |
在线时间 | 177 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 5621
- 在线时间
- 177 小时
- 注册时间
- 2011-6-3
- 帖子
- 32
|
本帖最后由 lqi991 于 2022-9-18 14:02 编辑
- ; (function () {
- try {
- var data = null;
- const xhr = new XMLHttpRequest();
- xhr.withCredentials = true;
- xhr.addEventListener("readystatechange", function () {
- if (this.readyState === this.DONE) {
- const o = JSON.parse(this.responseText);
- $gameVariables.setValue(1, Number(o.sysTime1)); // 这里获取网络时间
- }
- });
- xhr.open("POST", "http://quan.suning.com/getSysTime.do", false);
- xhr.setRequestHeader("cache-control", "no-cache");
- xhr.send(data);
- }
- catch (e) {
- // 这里写获取本地时间
- };
- })();
复制代码
# 这个接口是网络的,可以用网页打开,可看到其属性值
# 这里看格式: 时间接口 |
|