一句话解决AJAX中文乱码问题[推荐]
程序员文章站
2022-06-24 16:22:54
下面是我的程序 html : 复制代码 代码如下:
下面是我的程序
html :
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>无标题页</title>
<script type="text/javascript" language="javascript">
var xmlhttp;
function createxmlhttprequest()
{
if(window.activexobject)
{
xmlhttp=new activexobject("microsoft.xmlhttp");
}
else if(window.xmlhttprequest)
{
xmlhttp=new xmlhttprequest();
}
}
function indata()
{
var txtval=document.getelementbyid("txt").value;
createxmlhttprequest();
xmlhttp.open("get","request.ashx?val="+txtval,true);
xmlhttp.onreadystatechange=getdata;
xmlhttp.send(null);
}
function getdata()
{
if(xmlhttp.readystate==4)
{
if(xmlhttp.status==200)
{
document.getelementbyid("showdt").innerhtml=xmlhttp.responsetext;
}
}
}
</script>
</head>
<body>
<form id="form1" action="">
<div>请输入姓名:
<input type="text" id="txt" />
<input type="button" value="提交" id="asdf" onclick="indata()" />
<span id="showdt" ></span>
</div>
</form>
</body>
</html>
request.ashx :
code
<%@ webhandler language="c#" class="request" %>
using system;
using system.web;
public class request : ihttphandler {
public void processrequest (httpcontext context) {
context.response.contenttype = "text/plain";
string tab ="来自服务器的信息:您好 "+context.request.querystring["val"].tostring()+" --by time:"+datetime.now.tolongtimestring();
context.response.write(tab);
}
public bool isreusable {
get {
return false;
}
}
}
baidu搜了一大堆 大致意思是 ajax提交数据时,使用的是utf-8的编码 并且不可以设置为其他格式
如何解决呢 最后发现一个js的函数escape与unescape 用escape()对将要提交的汉字进行编码,会出现大致%10%20的字符,类似与.net中server.urlencode()与server.urldecode();
将js获得的表单值进行重新编码
code
var txtval=escape(document.getelementbyid("txt").value);
ok, 问题解决!
其他可能还有别的办法至今没遇到 希望这个办法能帮到遇到这种困境的朋友
html :
复制代码 代码如下:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>无标题页</title>
<script type="text/javascript" language="javascript">
var xmlhttp;
function createxmlhttprequest()
{
if(window.activexobject)
{
xmlhttp=new activexobject("microsoft.xmlhttp");
}
else if(window.xmlhttprequest)
{
xmlhttp=new xmlhttprequest();
}
}
function indata()
{
var txtval=document.getelementbyid("txt").value;
createxmlhttprequest();
xmlhttp.open("get","request.ashx?val="+txtval,true);
xmlhttp.onreadystatechange=getdata;
xmlhttp.send(null);
}
function getdata()
{
if(xmlhttp.readystate==4)
{
if(xmlhttp.status==200)
{
document.getelementbyid("showdt").innerhtml=xmlhttp.responsetext;
}
}
}
</script>
</head>
<body>
<form id="form1" action="">
<div>请输入姓名:
<input type="text" id="txt" />
<input type="button" value="提交" id="asdf" onclick="indata()" />
<span id="showdt" ></span>
</div>
</form>
</body>
</html>
request.ashx :
code
复制代码 代码如下:
<%@ webhandler language="c#" class="request" %>
using system;
using system.web;
public class request : ihttphandler {
public void processrequest (httpcontext context) {
context.response.contenttype = "text/plain";
string tab ="来自服务器的信息:您好 "+context.request.querystring["val"].tostring()+" --by time:"+datetime.now.tolongtimestring();
context.response.write(tab);
}
public bool isreusable {
get {
return false;
}
}
}
baidu搜了一大堆 大致意思是 ajax提交数据时,使用的是utf-8的编码 并且不可以设置为其他格式
如何解决呢 最后发现一个js的函数escape与unescape 用escape()对将要提交的汉字进行编码,会出现大致%10%20的字符,类似与.net中server.urlencode()与server.urldecode();
将js获得的表单值进行重新编码
code
复制代码 代码如下:
var txtval=escape(document.getelementbyid("txt").value);
其他可能还有别的办法至今没遇到 希望这个办法能帮到遇到这种困境的朋友
上一篇: Android中实现长按照片弹出右键菜单功能的实例代码
下一篇: Ajax Hacking
推荐阅读
-
Windows下利用Gvim写PHP产生中文乱码问题解决方法
-
PHP中使用file_get_contents抓取网页中文乱码问题解决方法
-
JQuery ajax 返回json时出现中文乱码该如何解决
-
angular4 获取wifi列表中文显示乱码问题的解决
-
jsp SmartUpload 中文乱码问题解决
-
php chr() ord()中文截取乱码问题解决方法
-
ubuntu系统下matplotlib中文乱码问题的解决方法
-
PL/SQL Oracle客户端出现中文乱码问题解决办法
-
关于Cookie中带有中文乱码报错的问题解决
-
Three.js使用THREE.TextGeometry创建三维文本中文乱码的问题如何解决?