第十四篇Ajax与Json
Posted 久冬不雨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第十四篇Ajax与Json相关的知识,希望对你有一定的参考价值。
1.Ajax的核心知识
1.1 XMLHttpRequest对象
function loadName(){
var xmlHttp;
if(window.XMLHttpRequest){
xmlHttp = new XMLHttpRequest();
}else{
xmlHttp = new ActiveObject("Microsoft.XMLHTTP"); // IE 5 和 IE 6
}
}
1.2 XMLHttpRequest对象请求后台
open(method,url,async)
send()
method: get或者post
async(是否异步):true 或者 false
send(string(参数)) 使用post方式
1.2 XMLHttpRequest对象响应服务器
以上是关于第十四篇Ajax与Json的主要内容,如果未能解决你的问题,请参考以下文章