-1

这是我之前的问题:Filter new content to only display specific divs

我想从变量内的外部页面获取和复制一些内容。为了执行它,我使用了 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

2

数据变量您想要的实际 HTML...

$.get('ajax/test.html', function (data) {
    var result = data;
    alert(result);
});

这是一个工作示例


如果您想在该 HTML 数据上使用 jquery,则必须将其转换为 JQuery 对象...

var htmlElement = $(result);
//can now do htmlElement.find(...

这是一个从 BBC 新闻网站中提取日期的示例

于 2013-05-01T16:11:39.997 回答