html 200错误,jquery ajax的error:200有关问题

jquery ajax的error:200问题

web环境:

软件:Dreamweaver CS5;

语言:jquery,php;

本地服务器:wampserver;(http://localhost)

数据库连接正常,可以使用ajax GET查询用户名是否存在。

出现问题:注册页面,ajax POST请求不能成功插入数据库.

问题截图:

231835105.jpg

点击注册按钮:

231835106.jpg

=============================================================

浏览器追踪:

Remote Address:[::1]:80

Request URL:http://localhost/yangwei/admin/zhuce.php

Request Method:POST

Status Code:200 OK

Request Headersview source

Accept:application/json, text/javascript, */*; q=0.01

Accept-Encoding:gzip,deflate

Accept-Language:zh-CN,zh;q=0.8

Connection:keep-alive

Content-Length:53

Content-Type:application/x-www-form-urlencoded; charset=UTF-8

Cookie:PHPSESSID=u1dqcsarob79jg52ls7phod7j4

Host:localhost

Origin:http://localhost

Referer:http://localhost/yangwei/user/zhuce.html

User-Agent:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.122 Safari/537.36

X-Requested-With:XMLHttpRequest

Form Dataview sourceview URL encoded

sname:李四

pwd:123456

phone:13137773333

Response Headersview source

Cache-Control:no-store, no-cache, must-revalidate, post-check=0, pre-check=0

Connection:Keep-Alive

Content-Length:1622

Content-Type:application/json;charset=utf-8

Date:Wed, 18 Mar 2015 09:21:45 GMT

Expires:Thu, 19 Nov 1981 08:52:00 GMT

Keep-Alive:timeout=5, max=100

Pragma:no-cache

Server:Apache/2.4.9 (Win32) PHP/5.5.12

X-Powered-By:PHP/5.5.12

=================================================================

本地代码:

js页:

$(document).ready(function(){

//注册

$("#zhuce").click(function(){

$.ajax({

type:"POST",

url:"../admin/zhuce.php",

dataType:"json",

data:{

"sname":$("#sname").val(),"pwd":  $("#pwd").val(),"phone":$("#phone").val(),

},

success:function(data){

if(data.success){

$("#vzhuce").html(data.msg);

setTimeout(function(){window.location="../index.php";},3000);

}else{

$("#vzhuce").html("error: "+data.msg);

}

},

error:function(jqXHR){

alert("发生错误: "+jqXHR.status);

},

});

});

});

后台PHP页:

//注册

function zhuce()

{

header("Content-type:application/json;charset=utf-8");

$sname = trim($_POST["sname"]);

$pwd = trim($_POST["pwd"]);

$phone = trim($_POST["phone"]);

if(!isset($sname) || empty($sname)

||!isset($pwd) || empty($pwd)

||!isset($phone) || empty($phone))

{

echo '{"success":false,"msg":"输入参数不全"}';

return;

}

else{

$rs=mysql_query("INSERT INTO `tb_user`(`sname`, `pwd`, `phone`) VALUES ('$sname','$pwd','$phone')",$link);

if($rs)

{

$_SESSION['user']=$sname;

echo '{"success":true,"msg":"注册成功,即将进入首页!"}';

exit;

}

}

}

请问大神们,GET没错误,POST出错,这算怎么一回事呢?

------解决思路----------------------

1、去掉程序文件的 BOM 头

2、去掉 header("Content-type:application/json;charset=utf-8");

最简单的判断方法是$(document).ready(function(){

//注册

$("#zhuce").click(function(){

$.ajax({

type:"POST",

url:"../admin/zhuce.php",

// dataType:"json",

data:{

"sname":$("#sname").val(),"pwd":  $("#pwd").val(),"phone":$("#phone").val(),

},

success:function(data){

alert(data);

if(data.success){

$("#vzhuce").html(data.msg);

setTimeout(function(){window.location="../index.php";},3000);

}else{

$("#vzhuce").html("error: "+data.msg);

}

},

error:function(jqXHR){

alert("发生错误: "+jqXHR.status);

},

});

});

});

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值