调用另一个页面中的jquery函数

时间:2013-10-13 13:19:50

标签: jquery html ajax

考虑两个页面,一个是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表单 请告诉我如何在不重新加载效果的情况下重新加载/刷新页面。

1 个答案:

答案 0 :(得分:0)

hello.html中的

function initFunc() {
    $("#loader").load("wow.html");
}
$(document).ready(initFunc);

现在在wow.html中,您可以随时拨打initFunc()

希望有所帮助。