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.
我正在使用中提供的示例:http: //jsfiddle.net/9R4hZ/40/
让 div 用鼠标滚轮滚动。它工作正常,但我想同时移动 2 个 div,而不是一个一个地移动它们。
可行吗?
要在 div B 滚动时更新 div A 的滚动位置,请监听 onscroll 事件并更新另一个 div 的滚动位置。
$('#a').scroll(function(){ $('#b').scrollTop($(this).scrollTop()); });