下面是在服务器上访问 url 并获取 html 响应的代码片段。我可以在 firefox 调试器中看到响应,但它没有显示在 div 标签中。
$.ajax({
url: url,
dataType: 'html',
data: '',
type: 'POST',
success: function(data) {
//in firefox debugger i can see complete html response inside data
$('#displayContent').html(data); // but here, it does not
// append the html inside div displayContent. Instead it makes
// the current page blank
}
});
我不明白我在这里犯了什么错误我不能直接将 ajax html 响应分配给选择器(在我的情况下是 div 标签)$('#displayContent').html(data)
吗?