Thinkphp ajax返回值

模版

【code】

 <html>
<head>
<script src="__PUBLIC__/js/Base.js"></script>
<script src="__PUBLIC__/js/prototype.js"></script>
<script src="__PUBLIC__/js/mootools.js"></script>
<script src="__PUBLIC__/js/Ajax/ThinkAjax.js"></script>
<script>
function add(){
ThinkAjax.sendForm('frm','__URL__/ajax',wc,'result');
}

function wc(data,status){
if(status!=1){
alert('发送失败请检查');
}else{
$('list').innerHTML+='学生姓名'+data.sname+',性别'+data.sex+',年龄'+data.sage;
}

}
</script>
</head>


<body>
<div id="result"></div>
<div id="list"></div>
<form action="__URL__/ajax" method="POST" id="frm">


学生姓名<input type="text" name="sname"/><br />
性别<input type="text" name="sex"/><br />
 年龄<input type="text" name="sage"/><br />

<input type="button" value="提交" οnclick="add()">


</form>




</body>
</html>

【、code】

控制器

【code】

 public function ajax(){
$user =M('User');
if($vo = $user->create()){
  if($user->add($_POST)){
 $this->ajaxReturn($vo,'用户添加成功',1);
 }else{
$this->errot(0,'添加错误',0);
  }
}else{
$this->error($user->getError());
}

}


  public function aja(){
$this->display('ajax');
}

【/code】

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值