$.ajax({ type : "get", //這裡get和post都可以 url : "cccccc.ccc", data: "name = xx & location = abc", success : function(){ } })
第二種:
$.ajax({ type : "get", //這裡get和post都可以 url : "cccccc.ccc", data: { name : "xx", location : "abc" } success : function(){ } })
第三種: 變數法
var dataJS = { "name": "xx", //屬性名打引號 類似json "location": "abc" } $.ajax({ type : "get", //這裡get和post都可以 url : "cccccc.ccc", data: dataJS, success : function(){ } })