例如,我有以下代码
<div style="width: 100px; overflow: auto;" class="slide-container">
long content here
</div>
$(".slide-container").scroll(function (e) {
var scrollLeftValue = $(this).scrollLeft(); /* want get scroll left count */
});
当我向左滚动内容时,scrollLeftValue 始终为 0。有什么想法吗?