0

データ オブジェクトとして 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'));
    }
});
4

1 に答える 1

0

特定のdivを取得できるロード機能を使用しないのはなぜですか

http://api.jquery.com/load/

$("#chat_list_out").load('http://localhost:8888/drupal #sidebar-first');
于 2013-10-11T15:00:33.010 に答える