0

我在页面上通过 ajax 加载了 html 表。现在我想通过 jquery 操作表格。所以我使用了 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 回答