摘要: 1、服务端程序:以下为引用的内容: <% liststr="AJAX中文乱码的简单解决方法" sponse.write escape(liststr) '用escape编码 %> 2、客户端JAVASCRIPT程序 function toserver(url){ var req = new XMLHttpRequest(); if (req) { req.onreadystatechange = function() { if (req.readyState == 4 ) { if(req.status == 200 || req.status == 3 阅读全文
posted @ 2012-05-29 17:42 良辰 阅读(541) 评论(0) 推荐(0)