0

我想检查页面上是否存在div#tab7AND ul.Gal_3。如果是这样,那么我想移动其中的全部ul.Gal_3内容div#tab7

这是我的条件部分代码,但最后一点不确定?这样做也会降低性能吗?

if ($('div#tab7').length > 0 && ('ul.Gal_3').length > 0) {
    //it exists so now move the contents of the UL inside the div#tab7
}
4

2 回答 2

2

我决定这样做:

if ($('div#tab7').length > 0 && $('ul.Gal_3').length > 0) {
    $('#tab7').append($('ul.Gal_3'));
}

检查选项卡和图库是否存在,然后将图库移动到 div#tab7 中。

于 2013-03-19T19:57:36.690 回答
-1

复制内容:

$('div#tab7').html($('ul.Gal_3').html());

移动内容:

var dest = $('ul.Gal_3');
$('div#tab7').html(dest.html());
dest.html('');
于 2013-03-19T19:42:53.530 回答