<div>
<a href="javascript:void(0)" class="back">Back</a>
<div class="outer"></div>
<a href="javascript:void(0)" class="next">Next</a>
</div>
<div>
<a href="javascript:void(0)" class="back">Back</a>
<div class="outer"></div>
<a href="javascript:void(0)" class="next">Next</a>
</div>
jQuery代碼:
$('.next').click(function() {
$('.next').prev().animate({
scrollLeft: '+=150'
}, 200);
});
$('.back').click(function() {
$('.back').next().animate({
scrollLeft: '-=150'
}, 200);
});
錯誤: 基本上我有相同的類如上更多的代碼,我想滾動它被點擊的代碼。但是上面寫的代碼會滾動頁面上的所有「.outer」。每組代碼都在不同的div中。不提供可滾動的「外部」的內部材料。
謝謝,這是一個好方法。它幫助我 –
@JahanzaibAsgher很高興它有幫助 –
給了我一個非常簡單的方法。再次感謝。它對我很有用 –