xhr的屬性和方法列表
}效果圖如下
post方法
網頁是填寫2個並提交的頁面
js裡這些原封不動
function createxhr()else if(window.activexobject)
return xhr;
} // 創造xhr
var xhr=createxhr();
下面post主要改變如下
1接受post資料
2請求頭新增 type
3send post 資料
function post()
} // 因為是post所以是 這個 一定要
// 傳送請求,這裡開始和get不一樣了,post需要傳送表單填寫的
xhr.send('username='+un+'&password='+pw);
// 有這個就不會action到那裡去了
return false;
}
通用post方法
向指定 url 傳送post方法的請求 param url 傳送請求的 url param param 請求引數,請求引數應該是 name1 value1 name2 value2 的形式。return 所代表遠端資源的響應結果 public static string sendpost strin...
GET方法與POST方法區別
get請求 1connection keep alivepost請求 20ajax publisher wiley1.post方法將請求資料放在請求正文中,get方法將請求資料放在url中,以?分割url和引數,引數間使用 連線。2.get對傳url大小有限制,post提交資料大小無限制。3.pos...
表單form裡的method屬性post get
表單form裡有個method屬性,method屬性有兩個值分別為post和get 這個屬性如果沒有指定時預設為get post和get的區別 post傳遞的資料量大,而get傳遞的資料量小 下面是網上搜到的兩者的區別 1.get是從伺服器上獲取資料,post是向伺服器傳送資料。2.get是把引數資...