0

ajax complete イベント内でいくつかのコードを実行しようとしましたが、ページ読み込みイベントでは機能しませんが、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();
        }
       // ......
    });
});
4

1 に答える 1

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();
        }
       // ......
    });
});
于 2013-02-16T06:05:14.980 に答える