var xmlhttp;
try{
xmlhttp=new XMLHttpRequest();
}catch(e){
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
//打开连接,true表示异步提交
xmlhttp.open("post", "ajax_careerwill.asp", true);
//当方法为post时需要如下设置http头
xmlhttp.setRequestHeader('Content-type','application/x-www-form-urlencoded');
//发送数据
xmlhttp.send("d_id="+escape(nl_ve_id)+"&d_ganwei="+escape(nl_ve_gw)+"&d_diqu="+escape(nl_ve_dq)+"&d_zhuf="+escape(nl_ve_zf)+"&d_jobtype="+escape(nl_ve_lx)+"&d_yuexin="+escape(nl_ve_yx)+"&d_beizhu="+escape(nl_ve_bz))
var x=unescape(xmlhttp.responseText);
[b]问题补充:[/b]
加了是不出错,但是
alert()没有出来
[b]问题补充:[/b]
先用提交表单测试过了,服务肯定有返回值,这得不到.
//创建XMLHttpRequest对象
var xmlhttp;
try{
xmlhttp=new XMLHttpRequest();
}catch(e){
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
//打开连接,true表示异步提交
xmlhttp.open("post", "ajax_careerwill.asp", true);
//当方法为post时需要如下设置http头
xmlhttp.setRequestHeader('Content-type','application/x-www-form-urlencoded');
//发送数据
xmlhttp.send("d_id="+escape(nl_ve_id)+"&d_ganwei="+escape(nl_ve_gw)+"&d_diqu="+escape(nl_ve_dq)+"&d_zhuf="+escape(nl_ve_zf)+"&d_jobtype="+escape(nl_ve_lx)+"&d_yuexin="+escape(nl_ve_yx)+"&d_beizhu="+escape(nl_ve_bz))
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.write(xmlhttp.responseText);
}
[b]问题补充:[/b]
加了http_request.onreadystatechange = alertContents;
出错
asp处页面是输入出一个id,没有问题.
不明白
谢谢