This commit is contained in:
2021-12-23 14:09:37 +08:00
parent b66820bdd3
commit 3f620a2243
6 changed files with 51 additions and 39 deletions

View File

@ -17,9 +17,24 @@ function getConfigRentrun(reson)
}
}
function getDevinfoRetrun(retrun)
{
var div=document.getElementById('devinfo');
div.innerHTML=retrun;
init()
}
var datad;
function init()
{
httpget("/php/GetConfig.php",datad,getConfigRentrun)
}
window.onload=init;
function getinit()
{
httpget("/php/GetIniFile.php",datad,getDevinfoRetrun)
}
window.onload=getinit;