有个表单 和一个按钮 怎么用ajax把表单里的数据 提交给后台 我是用VS做的
发布网友
发布时间:2023-04-30 00:49
我来回答
共1个回答
热心网友
时间:2023-10-05 14:43
//
创建对象
function
createXMLHttpRequest()
{
try{
xmlHttp
=
new
XMLHttpRequest();
}
catch(trymicrosoft)
{
try{xmlHttp
=
new
ActiveXObject("Msxml2.XMLHTTP");}
catch(othermicrosoft)
{
try{xmlHttp
=
new
ActiveXObject("Microsoft.XMLHTTP");}
catch(failed)
{
alert('XML对象创建失败');
}
}
}
}
//
js按钮事件
function
sub()
{
createXMLHttpRequest()
//
获取你需要提交至服务器的数据
var
val
=
document.getElementById(id).value;
//设置请求的地址
url
=
"/AjaxServers/xxxx.xxxx?val="+val;
xmlHttp.open("GET",url,true);
xmlHttp.onreadystatechange
=
function()
{
if(xmlHttp.readyState=="4")
if(xmlHttp.status=="200")
{
//
接收服务器返回的数据
var
str
=
xmlHttp.responseText;
}
else
{
alert('服务器异常);
}
};
xmlHttp.send(null);
}