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.
我有一个包含多个值的列表框。Ctrl+uparrow/Ctrl+downarrow.我需要一个功能来使用我在这里向上/向下移动项目 当所选项目listbox失焦时遇到问题scrollbars不相应移动并且所选项目不可见。非常感谢任何帮助。谢谢提前。
Ctrl+uparrow/Ctrl+downarrow.
listbox
scrollbars
演示:演示
$('#list').on('scroll',function(){$('#list2').scrollTop($(this).scrollTop());});
或者对于两个列表框:
$('#list2').on('keyup',function(){$('#list').scrollTop($(this).scrollTop());}); $('#list').on('keyup',function(){$('#list2').scrollTop($(this).scrollTop());});