我想检查页面上是否存在div#tab7
AND 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
}
我想检查页面上是否存在div#tab7
AND 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
}
我决定这样做:
if ($('div#tab7').length > 0 && $('ul.Gal_3').length > 0) {
$('#tab7').append($('ul.Gal_3'));
}
检查选项卡和图库是否存在,然后将图库移动到 div#tab7 中。
复制内容:
$('div#tab7').html($('ul.Gal_3').html());
移动内容:
var dest = $('ul.Gal_3');
$('div#tab7').html(dest.html());
dest.html('');