首页 > 代码库 > jQuery与Ajax的应用

jQuery与Ajax的应用

XMLHttpRequest对象 XHR

Ajax核心XMLHttpRequest对象:

xhr.open("get/post","example.txt",false);

xhr.send(null);

 http://dev.yesky.com/91/2687091.shtml

jQuery对Ajax进行了封装:

$.ajax();

$.get()和$.post();

$.getScript()和$.getJSON();