mirror of
http://172.16.0.230/r/SIF/TowerOptoSifAndSpectral.git
synced 2025-10-19 03:49:42 +08:00
添加了html
This commit is contained in:
69
html/javascript/comment.js
Normal file
69
html/javascript/comment.js
Normal file
@ -0,0 +1,69 @@
|
||||
function ajaxObject() {
|
||||
var xmlHttp;
|
||||
try {
|
||||
// Firefox, Opera 8.0+, Safari
|
||||
xmlHttp = new XMLHttpRequest();
|
||||
}
|
||||
catch (e) {
|
||||
// Internet Explorer
|
||||
try {
|
||||
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
|
||||
} catch (e) {
|
||||
try {
|
||||
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
|
||||
} catch (e) {
|
||||
alert("您的浏览器不支持AJAX!");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return xmlHttp;
|
||||
}
|
||||
function httppost ( url , data , fnSucceed ){// fnFail , fnLoading ) {
|
||||
var ajax = ajaxObject();
|
||||
ajax.open( "post" , url , true );
|
||||
// ajax.setRequestHeader( "Content-Type" , "application/octet-binary" );
|
||||
ajax.onreadystatechange = function () {
|
||||
if( ajax.readyState == 4 ) {
|
||||
if( ajax.status == 200 ) {
|
||||
|
||||
fnSucceed( ajax.response);
|
||||
|
||||
//ajax.response.size();
|
||||
}
|
||||
else {
|
||||
// fnFail( "HTTP请求错误!错误码:"+ajax.status );
|
||||
}
|
||||
}
|
||||
else {
|
||||
//fnLoading();
|
||||
}
|
||||
}
|
||||
// ajax.responseType="arraybuffer";
|
||||
ajax.send( data );
|
||||
|
||||
}
|
||||
function httpget ( url , data , fnSucceed ){// fnFail , fnLoading ) {
|
||||
var ajax = ajaxObject();
|
||||
ajax.open( "get" , url , true );
|
||||
// ajax.setRequestHeader( "Content-Type" , "application/octet-binary" );
|
||||
ajax.onreadystatechange = function () {
|
||||
if( ajax.readyState == 4 ) {
|
||||
if( ajax.status == 200 ) {
|
||||
|
||||
fnSucceed( ajax.response);
|
||||
|
||||
//ajax.response.size();
|
||||
}
|
||||
else {
|
||||
// fnFail( "HTTP请求错误!错误码:"+ajax.status );
|
||||
}
|
||||
}
|
||||
else {
|
||||
//fnLoading();
|
||||
}
|
||||
}
|
||||
// ajax.responseType="arraybuffer";
|
||||
ajax.send( data );
|
||||
|
||||
}
|
25
html/javascript/config.js
Normal file
25
html/javascript/config.js
Normal file
@ -0,0 +1,25 @@
|
||||
function getConfigRentrun(reson)
|
||||
{
|
||||
var aa=JSON.parse(reson);
|
||||
for (var obj in aa)
|
||||
{
|
||||
var temmp=document.getElementById(obj);
|
||||
temmp.value=aa[obj];
|
||||
if (obj=="GPS_North")
|
||||
{
|
||||
if (aa[obj]=="on")
|
||||
{
|
||||
temmp.checked=true;
|
||||
}else {
|
||||
temmp.checked=false;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
var datad;
|
||||
function init()
|
||||
{
|
||||
httpget("/php/GetConfig.php",datad,getConfigRentrun)
|
||||
}
|
||||
window.onload=init;
|
Reference in New Issue
Block a user