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.
我有一个监听 Home 和 End 键的页面,然后当我将 jScrollPane 放在我的窗口上时,它现在也会滚动,我不希望这样。点击 Home 或 End 时如何停止窗口滚动?return false;不起作用。
return false;
提前致谢。
确保在 jScrollPane 之前附加侦听器:
$(elem).on( "keydown", function(e){ if( e.which === 35 || e.which === 36 ) { e.stopImmediatePropagation(); } }).jScrollPane( ... )