在我的应用中,我正在显示使用jQuery ajax在图片中标记的朋友列表(#LIST)。该列表正在从数据库条目中填充。
现在,当我标记新朋友时,我需要更新数据库中的条目。然后,刷新朋友列表(#LIST)。
我正在尝试使用form.submit()调用php脚本来更新数据库中的列表,然后将脚本重定向到原始页面。但是,我实际上不想刷新整个页面而只是#LIST。
我没有得到,如何运行php脚本来更新数据库,结束后,将使用ajax刷新我的#LIST。
我的代码如下所示:
// JQuery
$("#list").load("taggedfriends.php");
$("#list_of_friends").load("facebookfriends.php");
//HTML
<div id="list"></div> // list of tagged friends
<form id="form_update" action="updatevalues.php" method="post" enctype="multipart/form-data">
<div id="list_of_friends"></div> // my facebook friends
<button type="submit" id="btn_update">Update</button>
</form>