欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

关于ajax 接收xml乱码有关问题

程序员文章站 2022-05-30 14:25:51
...
关于ajax 接收xml乱码问题?
一个PHP文件,从数据库中取出数据,用的xml返回给ajax,GB2312编码 get方式
PHP文件顶部已经定义
header("Content-Type: text/xml;charset=GBK");
但是在IE下还是空白的,其他浏览器正常,测试返回的数据换成英文的话是没问题的
有哪位遇到过这情况的,求指点……
一下为主要代码
ajax.php

header("Content-Type: text/xml;charset=GBK");
$sheng=$_REQUEST['pro'];
$info="";
$query="select name from pre_common_district where upid=$sheng";
$result= mysql_query($query);
$info="";
while($data= mysql_fetch_assoc($result)){
$info.="".$data['name']."";
}
$info.="
";
echo $info;


ajax.js代码


if(http_request){

var url="myajax.php?pro="+$('sheng').selectedIndex;
//var data="pro=";
//window.alert(data);
http_request.open("get",url,true);
//http_request.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
http_request.onreadystatechange=chuli;

http_request.send();

}

function chuli
************
var cities=http_request.responseXML.getElementsByTagName("city");



//把返回的城市动态添加到city控件
关于ajax 接收xml乱码有关问题

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频