在JQuery中,$.ajax是實現異步數據交換的主要方法,type是其中的一個可選參數,用于指定HTTP請求類型。HTTP請求類型有GET、POST、PUT、DELETE等,type默認為GET。下面是一些type常用的值及其作用:
$.ajax({ url: "test.html", type: "GET", //默認值 success: function(result){ console.log(result); } });
使用GET方法獲取指定url的內容。
$.ajax({ url: "test.html", type: "POST", data: { name: "John", location: "Boston" }, success: function(result){ console.log(result); } });
使用POST方法將數據提交到指定url,data參數用于傳遞表單數據。
$.ajax({ url: "test.html", type: "PUT", data: { name: "John", location: "Boston" }, success: function(result){ console.log(result); } });
使用PUT方法更新指定url的資源,data參數用于傳遞更新的數據。
$.ajax({ url: "test.html", type: "DELETE", success: function(result){ console.log(result); } });
使用DELETE方法刪除指定url的資源。
$.ajax({ url: "test.html", type: "HEAD", success: function(result){ console.log(result); } });
使用HEAD方法獲取指定url的頭信息。