首页上一页 1 下一页尾页 2 条记录 1/1页
php从入门到精通书中的问题ajax问题
发表在PHP图书答疑
2008-11-29
是否精华
是
否
版块置顶:
是
否
我用php+ajax测试,发现可以正确显示英文字母一有中文就乱码,需要加什么代码可以正确显示?我直接加上header('Content-type:text/html; charset=Gb2312');会出现警告!
我使用的功能是点一按钮弹出另一个文件的文本,
<script language="javascript">
var xmlHttp;
function createXMLHttpRequest(){
if(window.ActiveXObject)
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
else if (window.XMLHttpRequest)
xmlHttp = new XMLHttpRequest();
}
function startRequest(){
createXMLHttpRequest();
xmlHttp.open("GET","test.php",true);
xmlHttp.onreadystartchange = function(){
if(xmlHttp.readyState == 4 && xmlHttp.status ==200)
alert("服务器返回"+xmlHttp.responseText);
}
xmlHttp.send(null);
}
</script>
</head>
<body>
<input type="button" value="测试" onClink = "startRequest()">
</body>
另一个文件就是<?php echo 明日科技; ?>
上面要加什么才不会乱码?烦解决,我是明日的忠实读者买了PHP书4本
我使用的功能是点一按钮弹出另一个文件的文本,
<script language="javascript">
var xmlHttp;
function createXMLHttpRequest(){
if(window.ActiveXObject)
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
else if (window.XMLHttpRequest)
xmlHttp = new XMLHttpRequest();
}
function startRequest(){
createXMLHttpRequest();
xmlHttp.open("GET","test.php",true);
xmlHttp.onreadystartchange = function(){
if(xmlHttp.readyState == 4 && xmlHttp.status ==200)
alert("服务器返回"+xmlHttp.responseText);
}
xmlHttp.send(null);
}
</script>
</head>
<body>
<input type="button" value="测试" onClink = "startRequest()">
</body>
另一个文件就是<?php echo 明日科技; ?>
上面要加什么才不会乱码?烦解决,我是明日的忠实读者买了PHP书4本