1

我想用修改后的 AJAX 响应替换 id = test 里面的内容

javascript:

('.test').bind('ajax:success', function()
{
    $.ajax({
          success: function(html){
            $('.test').text($(html).find("#test"));  // returns [object Object]

          }
    });
});

但是$(html).find("#test")返回一个[object Object]$(html).find("#test").html()返回null

如何在 ajax 响应中获取 id 为“test”的 div 的内容?

4

1 回答 1

0

根据此博客 链接,答案在第二个参数中:

jQuery(function($) {
  // create a convenient toggleLoading function
  var toggleLoading = function() { $("#loading").toggle() };

  $("#tool-form")
    .bind("ajax:loading",  toggleLoading)
    .bind("ajax:complete", toggleLoading)
    .bind("ajax:success", function(event, data, status, xhr) {
      $("#response").html(data);
    });
});

然后,您的代码将是:

$('.test').bind('ajax:success', function(event, data, status, xhr) {

   // this is $('.test')
   $(this).text($(data).find("#test"));

});
于 2012-09-05T00:17:56.847 回答