jQuery

$(selector).action()
美元符号定义jQuery
选择器查找HTML元素
action()执行对元素的操作
example:

$(this).hide()
$("p").hide()

jQuery ajax post()方法:
jQuery.post(*url*,*data*,*success(data, textStatus, jqXHR)*,*dataType*)

jQuery_第1张图片
Paste_Image.png

该函数是简写的 Ajax 函数,等价于:

$.ajax({
 type: 'POST',
 url: *url*,
 data: *data*,
 success: *success*,
 dataType: *dataType*
});

你可能感兴趣的:(jQuery)