我正在尝试将 '.test' 附加到 '#lig' 并且这有效,但显然加载了具有相同类的所有元素。我将如何拥有它以隐藏现有的并仅从同一个 div 中获取“.test”?
<div class="qq">
<a href="image1.jpg" class="more">More</a>
<a href="http://yahoo.com" class="test">Yahoo</a>
</div>
<div class="qq">
<a href="image2.jpg" class="more">More</a>
<a href="http://google.com" class="test">Google</a>
</div>
<div id="lig"></div>
$('.test').appendTo('#lig');