精通jquery

jQuery post() 和get()方法
定义和用法
$.post() 方法使用 HTTP POST 请求从服务器加载数据。
$.get() 方法使用 HTTP GET 请求从服务器加载数据。
语法
$(selector).post(URL,data,function(data,status,xhr),dataType)
$.get(URL,data,function(data,status,xhr),dataType)
例子
https://www.runoob.com/try/try.php?filename=tryjquery_ajax_post2
https://www.runoob.com/try/try.php?filename=tryjquery_ajax_get

你可能感兴趣的:(javascript)