load_ver.js 447 B

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