0

ページに ajax 経由で読み込まれた html テーブルがあります。jqueryでテーブルを操作したいです。だから私は on() 関数を使用しました。問題は、何かをさせるために、イベントをパラメーターの on として渡す必要があることです

例:

 $(document).on("click", "table#cal", function(event){
    alert("loaded");
   });

テーブルが読み込まれるとすぐに、データを「クリック」するのではなく、データの前に追加するなどの方法はありますか?

4

1 に答える 1

4

.success()AJAX呼び出しのコールバックでそれを行うことはできませんか?

$.ajax({
    // ajax settings
})
.success(function (m) {
    // get the table data
    // build the table
    // place the table on your DOM
    // get yourself a cup of coffee
    // do backflips
    // feed the dog
    // ...
    // manipulate the table
});
于 2012-04-19T07:41:48.680 に答える