js ajax post 编码格式,js调用AJAX时Get和post的乱码解决方法

在使用"get"时,抓取的页面最后加上编码类型

服务器端:servletactioncontext.getresponse().setcharacterencoding("utf-8");

客户端 网页特效p/jsp.html target=_blank >jsp教程:

response.expires = -9999

response.addheader "pragma","no-cache"

response.addheader "cache-ctrol","no-cache"

response.addheader "content-type","text/html; charset=gb2312"'这是重点,否则会出现乱码

response.write "中文汉字"%>

2、在使用post时用vbscript解决了编码问题:

源码如下:

function urlencoding(vstrin)

strreturn = ""

for i = 1 to len(vstrin)

thischr = mid(vstrin,i,1)

if abs(asc(thischr)) < &hff then

strreturn = strreturn & thischr

else

innercode = asc(thischr)

if innercode < 0 then

innercode = innercode + &h10000

end if

hight8 = (innercode and &hff00) &hff

low8 = innercode and &hff

strreturn = strreturn & "%" & hex(hight8) & "%" & hex(low8)

end if

next

urlencoding = strreturn

end function

function bytes2bstr(vin)

strreturn = ""

for i = 1 to lenb(vin)

thischarcode = ascb(midb(vin,i,1))

if thischarcode < &h80 then

strreturn = strreturn & chr(thischarcode)

else

nextcharcode = ascb(midb(vin,i+1,1))

strreturn = strreturn & chr(clng(thischarcode) * &h100 + cint(nextcharcode))

i = i + 1

end if

next

bytes2bstr = strreturn

end function

下面是使用vbscript函数:

/**

* 初始化一个xmlhttp对象

*/

function initajax()

{

var ajax=false;

try {

ajax = new activexobject("msxml2.xmlhttp");

} catch (e) {

try {

ajax = new activexobject("microsoft.xmlhttp");

} catch (e) {

ajax = false;

}

}

if (!ajax && typeof xmlhttprequest!='undefined') {

ajax = new xmlhttprequest();

}

return ajax;

}

function saveuserinfo()

{

var msg = document.getelementbyid("msg");

var f = document.user_info;

var username = f.user_name.value;

var userage = f.user_age.value;

var usersex = f.user_sex.value;

var url = "save.asp教程";

var poststr = urlencoding("user_name="+ username +"&user_age="+ userage +"&user_sex="+ usersex);//post时采用编码传递

var ajax = initajax();

ajax.open("post", url, true);

ajax.setrequestheader("content-type","application/x-www-form-urlencoded");

ajax.send(poststr);

ajax.onreadystatechange = function() {

if (ajax.readystate == 4 && ajax.status == 200) {

msg.innerhtml = bytes2bstr(ajax.responsebody); //获取时解码

}

}

}

姓名:

年龄:

性别:

成功

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值