如何用jquery ajax 修改数据库字段? [ 求助交流 ]
我想通过jquery ajax实现:
点击按钮后,后台数据库通过./index.php?r=admin/default/update&id=<?php echo $i->id; ?>
这个链接修改某个字段。
前端按钮点击后消失变成提示文字。
请问,我该怎么写jquery?
共 1 条回复
-
$.get(<?= Url::toRoute(['/admin/default/update','id'=>$i->id]) ?>,function(json){ alert(json);//fadeout,html(txt) });
共 6 条回复raozhaofeng 回复于 2015-07-29 15:18 回复这个是...
$("button").click(function(){ var id = $(this).attr("data-id"); $.get("./index.php?r=admin/default/update", { id:id }, function(){ $("#btn1").each(function(){ $(this).replaceWith('审核通过'); }); }); }); ... <button data-id='1' > <button data-id='2' > <button data-id='3' >
@naivefang 奥,我明白了,谢谢这位大神啦!也谢谢我们的舰长!
剑圣 纽约
注册时间:2015-05-07
最后登录:2016-09-16
在线时长:14小时19分
最后登录:2016-09-16
在线时长:14小时19分
- 粉丝2
- 金钱1210
- 威望0
- 积分1350