我有以下代码,它在提交表单时有效(它保持在同一页面上)但我也希望在提交后刷新当前页面。
<script>
$('form').live('submit', function(){
$.post($(this).attr('action'), $(this).serialize(), function(response){
// Here I need a code to refresh the page. I tried with window.location.reload(); no success...
},'json');
$('form').hide();
return false;
});
感谢您的帮助