Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每次使用 tinyscrollbar 滚动时,我都想触发一个事件。我试过使用 jquery 的滚动方法,但它只适用于 tinyscrollbar 部分之外的区域。有人知道怎么做这个吗?
谢谢
您可以绑定以下事件。
$("#scrollbar").on('mouseup', '.track', function() { console.log('scroll'); }); $("#scrollbar").on('mousewheel DOMMouseScroll', function() { console.log('mousewheel'); });
在 tinyscrollbar.js 第 167 行“功能轮(事件)”中找到它