我想用修改后的AJAX响应
替换id = test的div中的内容的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的内容?
答案 0 :(得分:0)
根据此博客link,答案在第二个参数中:
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"));
});