2013-05-29 108 views
0

使用JavaScript,你可以使用xmlhttp.open來完成,還有其他什麼方法可以做到這一點?是否可以發送自定義HTTP請求

+0

可能相關:http://stackoverflow.com/questions/4521149/http-request-from- javascript-using-raw-message-including-headers http://stackoverflow.com/questions/4463624/how-can-i-send-raw-data-in-an-http-get-request –

回答

-1

如果你不想POST方法,使用jQuery做:

$.get('test.html',{foo: 'bar'}, function(data) { 
    alert('Load was performed.'); 
}); 

http://api.jquery.com/jQuery.get/

+0

也許插入數據對象,以滿足需求:'.get('test.html',{foo:'bar'},function(data){' – Imperative

+0

,但不會在URL請求中獲得參數,而不是發送數據像POST這樣的身體會是? – user1166981

+0

我編輯過,謝謝@Imperative – Thierry

相關問題