我有一个 login.php 文件:
if(...) {
...
header('Refresh: 1; url="login.php"';
} else {
echo '<form name="submit">...</form>';
}
和带有jquery的代码:
$('#resetreq').live('submit', function() {
$.post('login.php', $(this).serialize(), function (
data, textStatus) {
$('#resetPwDiv').html(data);
});
return false;
});
和,在哪里显示表格。如何使用在 div 中刷新的 javascript 进行工作刷新?我想在提交按下后刷新一次。
感谢您的回复。