这是我之前的问题: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
});
谢谢你的帮助