Ajax技术

一、原生Ajax

XMLHttpRequest对象

xmlHttp协议

载体:文本,xml,json

ajax对象的属性

onreadyStste

responseText:

responseXML:

status:

步骤:

1、创建对象

2、发送请求:调用open方法

3、处理请求

4、事件处理函数

二、jQuery的Ajax

$.load

$.get

$.post

$.getJSON

 

你可能感兴趣的:(Ajax技术)