考虑两个页面,一个是hello.html,另一个是wow.html。
hello.html 包含以下脚本
<script>
$(document).ready(function() {
$( "#loader" ).load( "wow.html");
});
</script>
和 wow.html 包含以下jquery函数
$(function () {
$('.bysh').on('submit', function (e) {
$.ajax({
type: 'post',
url: 'entco.jsp',
data: $(this).serialize(),
success: function (result) {
}
});
e.preventDefault();
});
});
现在如何在hello.html中调用document.ready函数,以便在wow.html中成功提交ajax表单 请告诉我如何在不重新加载效果的情况下重新加载/刷新页面。
答案 0 :(得分:0)
:
function initFunc() {
$("#loader").load("wow.html");
}
$(document).ready(initFunc);
现在在wow.html中,您可以随时拨打initFunc()
。