| 12345678910111213 |
- function load_ver() {
- var url = "/api/version";
- var xhr = new XMLHttpRequest();
- xhr.open("GET", url, true);
- xhr.send(null);
- xhr.onreadystatechange = function() {
- if(this.readyState === 4 && this.status === 200) {
- document.getElementById('ver_send').innerHTML += JSON.parse(this.responseText)['lastest_version'];
- document.getElementById('ver_send').style.display = "list-item";
- }
- }
- }
|