日期:2014-05-16 浏览次数:20352 次
function CK_validateCode(obj){
obj.style.backgroundColor="";
xmlhttp.onreadystatechange=c;
xmlhttp.open("post","checkValidateCode.aspx",true);
xmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded;charset=UTF-8");
var param="validateCode="+$("validateCode").value+"&r="+Math.random();
alert(param);
xmlhttp.send(param);
}
function c(){
if(xmlhttp.readyState==4){
alert("msg");
if(xmlhttp.responseText=="0")
{
$("v5_img").src="../css/accept.png";
}else {
$("v5_img").src="../css/exclamation.png";
}
}
}
function c(){
if(xmlhttp.readyState==4){
alert(xmlhttp.status);//跟踪一下状态值的变化
if(xmlhttp.status==200){
var ret=xmlhttp.responseText;
xmlhttp=null
if(ret=="0"){$("v5_img").src="../css/accept.png";}
else{$("v5_img").src="../css/exclamation.png";}
}
}
}