send不發URL的參數,send發的參數是壹個字符串,不是以&隔開的形式,end發送的是JSON;
HTTP標凖的QueryString傳值的方法,它只用壹個&分割兩個鍵值對;
例1:
send(JSON.stringify({
num1:123,num2:456
}))
例2:
varname=document.getElementById('a').value;//獲取輸入值
xmlhttp.send("name="+name);
擴展資料
XMLHttpRequestpost傳遞多個參數及服務器端讀取
varhttp=newXMLHttpRequest();
varform=newFormData();
//Addselectedfiletoform
form.append(me.getName(),file);
form.append('filename','1.png');
//SendformwithfileusingXMLHttpRequestPOSTrequest
http.open('POST',me.getUrl());
http.send(form);