-1

以前の質問は次のとおりです。特定の div のみを表示するように新しいコンテンツをフィルター処理する

変数内の外部ページからコンテンツを取得してコピーしたいと思います。それを実行するために、jquery.get 関数を使用しています。

// This code is adding to the div the content
$('.result').html(data);

コンテンツを変数に保存して、必要な情報だけを取得できるようにしたい

   $.get('ajax/test.html', function(data) {
          // Add to the <div class="result"> the html of data
          $('.result').html(data);
          // I would like some thing like this
          var result = the html of data 
   });

ご協力いただきありがとうございます

4

1 に答える 1