Jquery Ajax对Slider的响应

时间:2014-01-30 13:18:23

标签: javascript php jquery ajax

这是我的jquery ajax响应代码:

$.ajax({
        type        : "POST",
        cache       : false,
        data        : teststring,
        dataType    : 'html',
        success: function(response) {
                $('#ajaxResultLeft').html(jQuery(response).find('#ajaxResultLeft').html()); 

    }
    });

我有价格滑块,如果直接表格提交滑块工作,如果我做的ajax意味着一切都很好,除了价格滑块。由于这些窗口加载功能,我认为

$(window).load(function(){ function lakh_val (A, B) {...} function area_val (A, B) {..}  });

如何在jquery ajax响应中调用这些函数。

1 个答案:

答案 0 :(得分:0)

尝试在onload中调用所有调用的函数:

$.ajax({
    type        : "POST",
    cache       : false,
    data        : teststring,
    dataType    : 'html',
    success: function(response) {
            $('#ajaxResultLeft').html(jQuery(response).find('#ajaxResultLeft').html()); 
            lakh_val (A, B);
            area_val (A, B);

}
});