データ オブジェクトとして html を返す if ステートメントがあります。私がやりたいことは、返されたデータから特定の div を取得し、それを div 内に表示することです。次のコードでこれを実行しようとしていますが、成功しません...
私のコードは次のようになります。
$.ajax({
url: "http://localhost:8888/drupal",
type: 'get',
dataType: 'text',
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert(errorThrown);
console.log(JSON.stringify(XMLHttpRequest));
console.log(JSON.stringify(textStatus));
console.log(JSON.stringify(errorThrown));
},
success: function(data) {
$("#chat_list_out").html($(data).filter('#sidebar-first'));
}
});