ajax中出现中文乱码和缓存的问题的解决方法

中文乱码:用 encodeURI("解决中文乱码")

解决浏览器缓存:传值的时候加上 new Date().getTime()

示例如下:

var ajax=null;
try {
    ajax=new XMLHttpRequest()
}catch(e) {
    ajax=new ActiveXObject("Microsoft.XMLHTTP")
}
ajax.open("get","a.php?name="+encodeURI('张三')+"&age=20&"+new Date().getTime(),true)
ajax.send()
ajax.onreadystatechange=function(){
    if(ajax.readyState==4){
        if(ajax.status==200){
            console.log(ajax.responseText)
        }
    }else{
        console.log(ajax.status)
    }
}



你可能感兴趣的:(ajax)