ajax 中文乱码

前端之家收集整理的这篇文章主要介绍了ajax 中文乱码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

var data = "article.title="+encodeURIComponent(title)+"&article.content="+encodeURIComponent(content)+"&comment="+encodeURIComponent(comment)+"&reprint="+encodeURIComponent(reprint)+
"&categoryId="+encodeURIComponent(categoryId)+"&status="+encodeURIComponent(status); createXMLHttpRequest(); xmlrequest.open("GET","draft_save",false); xmlrequest.setRequestHeader("Content-Type","application/x-www-form-urlencoded"); xmlrequest.onreadystatechange = processResponse; xmlrequest.send(data);

猜你在找的Ajax相关文章