在jquery ajax完成事件之后不执行代码

时间:2013-02-16 01:55:58

标签: javascript jquery

我试图在ajax完成事件中执行一些代码,但它不适用于页面加载事件,但它在onchange链接事件中完美运行

$(document).ready(function() {
    $.ajax({
        beforeSend: function() {
         // Handle the beforeSend event
        },
        complete: function() {
            // Handle the complete event
            $("#customfields_1 :input").filter(function() {
                return $.trim(this.value).length === 0;
            }).closest("td").hide();
        }
       // ......
    });
});

1 个答案:

答案 0 :(得分:0)

$(document).ready(function() {
    $.ajax({
        url: 'http://foo.bar.com/some.json',  // this is the important part
        beforeSend: function() {
         // Handle the beforeSend event
        },
        complete: function() {
            // Handle the complete event
            $("#customfields_1 :input").filter(function() {
                return $.trim(this.value).length === 0;
            }).closest("td").hide();
        }
       // ......
    });
});