ajax可以提交到后台,后台也能获取到提交的数据,直接输出可以,但是写一些其他处理代码,就没法输出json了
$(document).ready(function(){
//post()方式
$('#test_post').click(function (){
$.post(
'ajax.php',
{
id:$("#id").val(),
},
function (data) { //回调函数
var myjson='';
eval('myjson=' + data + ';');
alert(data);
$('#result').html("ID为:" + myjson.username);
}
);
});
});
$a = $_POST["id"];
$conn = mysql_connect("localhost","root","");
$my_db = mysql_select_db("demo",$conn);
$sql="select * from demo where id = $a";
$result = mysql_query($sql, $conn);
$userInfo = mysql_fetch_assoc($result);
print_r($userInfo);
// echo $a;
直接输出$a可以,但是执行操作数据库的代码就不能输出了。操作数据库代码正确,没有问题
------解决方案--------------------
看控制台,有什么提示?
------解决方案--------------------
在ajax.php中把id赋一个固定的值,单独打开ajax.php看一下,就应该明白了
友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群