我有一些jQuery代码,我一直在YouTube上使用phpacademy(顺便说一句,我是js和jquery的总菜单!),它通过AJAX提交表单 - 一切正常。
我的问题是,在AJAX成功回调函数上我希望能够刷新页面然后显示确认div(该页面是在底部添加新用户表单的用户列表)。
提前致谢
答案 0 :(得分:0)
您可以刷新显示“用户列表”的div,如下所示:
从服务器返回新的用户列表,并在jquery中以表格或列表的形式构建列表,并以div显示。
例如:
<div id="result" />
$.ajax({
url: "test.html",
....
}).done(function(result) { // Here result will contain the list which you will have to return from the server side
..// Your Code to Loop through the result and prepare the list and append it to div.
// For eg:
$.each(result, function(key,item) {
$("#result").append("<li>" + item.propertyName + </li>); // Append list to div
});
});