对于Ajax post数据多的时候解决方法 有简洁的jquery方法post么
对于Ajax post数据多的时候解决方法
var resource = "result=.......too many data..........";
var url = "aLink?param1="+param1;
。。。。。生成XMLHttpRequest对象程序。。。。
xmlRequest.open("post", url, false);
xmlRequest.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xmlRequest.send(resource)