有没有办法在ajax响应后启动脚本?

时间:2014-06-12 02:51:11

标签: javascript php jquery ajax

我的问题是我在文档中包含了html功能所需的脚本。在我的ajax请求放置在页面中的html块后,功能不起作用。因此,在进行ajax调用之前加载脚本时,脚本无法知道页面中是否有新的数据块。

有没有办法在进行ajax调用后重新加载脚本?或者解决这个问题的最佳方法是什么。

1 个答案:

答案 0 :(得分:0)

成功方法应该可以帮助你

$.ajax({
    type: "POST",
    url: "anyUrlPhpPage.php",
    data: $("#formId").serialize(), //serialize the form data
    cache: false,
    success: function(msgReturned){
        $("#resultDisplay").html(msgReturned); 
        //display the message in the div with id resultDisplay

    }
});