如何将用户数据从db加载到php到ajax,然后操纵DOM?
这就是我的想法:
用户已登录 - >使用php从db获取用户数据 - > ajax使用post请求所有数据 - >在DOM上做点什么
ajax怎么样?我只知道如何使用它从ajax到php到db:
$.ajax({
type: "POST",
url: "send.php",
data: { item : text }
})
答案 0 :(得分:0)
您可以在send.php中执行后端操作,然后可以从后端返回html数据
EG。在send.php中
echo "<h2>" . $your_db_thing . "</h2>";
在ajax中,添加成功设置,请参阅Jquery Ajax
$.ajax({
type: "POST",
url: "send.php",
data: { item : text },
success:function(data) { // data will be <h2>your_db_thing</h2>
$('#successDiv').html(data); // the success element in which your html to be placed
}
})