从var中选择所有带有类的div

时间:2014-02-06 13:50:17

标签: javascript jquery ajax

我需要从变量中选择class =“test”的所有div并将它们放入另一个div中。

var all = xmlhttp.responseText;
var x = $(all > '.test');    <-- how to write correctly ?
$('.anotherdiv').prepend(x);

2 个答案:

答案 0 :(得分:4)

$('<div />', {html : all}).find('.test').prependTo('.anotherdiv');

答案 1 :(得分:1)

使用jQuery filter()方法:

var x = $(all).filter('div.test');

或使用find()

var x = $(all).find('div.test');

现在它取决于您的字符串all

的值