我有2页,在第一页中,我通过ajax调用了另一页(第二页)。在第二页中,有一个通过ajax发送然后重新加载页面一次的表单。但是,当第二页刷新时,我的第一页也刷新。但是我不想要它。我只想重新加载我的内页。有没有办法只重新加载内部页面?
这是我的内页代码:
$(document).ready(function() {
$(document).on('click', '.MyForm button[type=submit]', function(e) {
e.preventDefault() // To make sure the form is not submitted
var $frm = $(this).closest('.MyForm');
console.log($frm.serialize());
$.ajax(
$frm.attr('action'),
{
method: $frm.attr('method'),
data: $frm.serialize(),
success: function(data) { $(".error").html(data), window.location.reload();}
}
);
});
});
.error{width:200px; height:50px;border:1px solid blue;}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.1/jquery.min.js"></script>
<form class="MyForm" method="post">
<input type="text" placeholder="name" value="Aynaz" name="a1" />
<select name="Avg">
<option value="1">1</option>
<option value="2">2</option>
</select>
<button type="submit">Submit</button>
<div class="error">Show form success here after page reload</div>
</form>
最佳答案
window.location.reload()
将始终重新加载整个页面。使用load()
函数,与首先使用它来加载内部页面的方法相同
$.ajax(
$frm.attr('action'),
{
method: $frm.attr('method'),
data: $frm.serialize(),
success: function(data) {
$(".error").html(data);
$('.div').html('').load('innerpage.htm');// reload the div
}
}
);