有时我有以下链接
<a href="#" class="next_link ">Next</a>
<a href="#" class="next_link no_more">Next</a>
但我只是想选择其中没有 no_more 的 a 标签。我尝试了以下但无济于事
$('a.next_link.not(.no_more)').live('click', function (){
$('html,body').animate({scrollTop: $("#dp-products-con").offset().top},'slow');
});