所以我有一个页面,可以在请求时更新我的数据库。例如,当我访问它时,database_update.php
它只是更新数据库并且不显示任何内容。
Index.php
显示用户数据库内容。
所以我在 JavaScript 中调用了一个函数,update
它必须使用 AJAX 来运行这个页面,并且在页面加载之后(在所有查询成功运行之后)它必须加载index.php
并向用户显示更新的页面(重新加载页面而没有刷新效果)。
我的代码是这样的:
$.get('ajax_update_table.php', {
// The following is important because page saves to another table
// users nick which call update:
update: UserLogin
}, function (output) {
// The following is unimportant:
$(myDiv).html(output).show();
});