码迷,mamicode.com
首页 > 其他好文 > 详细

ajax4

时间:2014-05-19 06:52:38      阅读:364      评论:0      收藏:0      [点我收藏+]

标签:style   c   ext   http   color   a   

 

这一步是一个回调函数,回调函数其实就和打电话代办事情是一个意思
这个回调函数其实就是状态改变的时候,js应该做什么事情

xmlHttp.onreadystatechange = function(){
if(xmlHttp.readyState == 4){
if(xmlHttp.status == 200){
var txt = xmlHttp.responseText;
var tishi = document.getElementById("tishi");
if(txt == "1"){
tishi.innerHTML = "用户已经被注册,请选用其他用户名";
tishi.style.cssText = "font-size:16px;color:red;background:#ccc;display:block";
}else{
tishi.innerHTML = "用户可以注册";
tishi.style.cssText = "font-size:16px;color:green;background:#ccc;display:block";
}
}
}
}

ajax4,布布扣,bubuko.com

ajax4

标签:style   c   ext   http   color   a   

原文地址:http://www.cnblogs.com/wanger1994/p/3732493.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!