2
0

load_ver.js 446 B

12345678910111213141516
  1. function load_ver() {
  2. var n_ver = document.getElementById('ver_send');
  3. var url = "/api/version";
  4. var xhr = new XMLHttpRequest();
  5. xhr.open("GET", url, true);
  6. xhr.send(null);
  7. xhr.onreadystatechange = function() {
  8. if(this.readyState === 4 && this.status === 200) {
  9. n_ver.innerHTML += JSON.parse(this.responseText)['lastest_version'];
  10. n_ver.style.display = "list-item";
  11. }
  12. }
  13. }