jquery 中$.ajax()方式传值乱码问题
jquery中$.ajax()方式传值到php中出现乱码,代码如下传值页面的jquery代码$(function(){$("#sName").blur(function(...
jquery 中$.ajax()方式传值到php中出现乱码,代码如下
传值页面的jquery代码
$(function(){
$("#sName").blur(function(){
var schoolName =$(this).val();
$parent = $(this).parent();
var nowTime = new Date().getTime();
$.ajax({
type:"GET",
contentType:"application/x-www-form-urlencoded; charset=utf-8",
url:"ajaxCheck/checkSchoolName.php?time="+nowTime,
dataType:"html",
data:"schoolName="+schoolName,
beforeSend:function(){
$parent.find('span').remove();
$parent.append("<img src='Images/loading.gif'>");
},
success:function(msg){
$parent.find('span').remove();
$parent.append(msg);
/*if(msg == "1"){
$parent.append("<span id='error'>该学校已存在!</span>");
}else{
$parent.append("<span id='success'>当前学校可以申请!</span>");
}*/
},
complete:function(XMLHttpRequest,textStatus)
{
$parent.find('img').remove();
},
error:function()
{
//错误处理
}
})
})
})
php代码
<?php
header("Content-type: text/html; charset=utf-8");
include_once"../conn/system.inc.php";
sleep(1);
$name = $_GET['schoolName'];
echo $name.'12345';
?>
PS:最后在原来的页面中输出回用$name传回的值就出现了乱码,全部页面都是用utf-8格式的!! 展开
传值页面的jquery代码
$(function(){
$("#sName").blur(function(){
var schoolName =$(this).val();
$parent = $(this).parent();
var nowTime = new Date().getTime();
$.ajax({
type:"GET",
contentType:"application/x-www-form-urlencoded; charset=utf-8",
url:"ajaxCheck/checkSchoolName.php?time="+nowTime,
dataType:"html",
data:"schoolName="+schoolName,
beforeSend:function(){
$parent.find('span').remove();
$parent.append("<img src='Images/loading.gif'>");
},
success:function(msg){
$parent.find('span').remove();
$parent.append(msg);
/*if(msg == "1"){
$parent.append("<span id='error'>该学校已存在!</span>");
}else{
$parent.append("<span id='success'>当前学校可以申请!</span>");
}*/
},
complete:function(XMLHttpRequest,textStatus)
{
$parent.find('img').remove();
},
error:function()
{
//错误处理
}
})
})
})
php代码
<?php
header("Content-type: text/html; charset=utf-8");
include_once"../conn/system.inc.php";
sleep(1);
$name = $_GET['schoolName'];
echo $name.'12345';
?>
PS:最后在原来的页面中输出回用$name传回的值就出现了乱码,全部页面都是用utf-8格式的!! 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询