我最近发现了jQuery Chosen的一个功能,当你悬停容器的底部时,它会自动向下滚动.chosen-results容器.
我已经找到了这样做的函数(result_do_highlight):here
if high_bottom >= visible_bottom
@search_results.scrollTop if (high_bottom - maxHeight) > 0 then (high_bottom - maxHeight) else 0
else if high_top < visible_top
@search_results.scrollTop high_top
有没有办法阻止滚动?
先感谢您
编辑
我分叉了Chosen-git并添加了一个解决方法:github.com/puresamari/chosen
这是如何使用它:
从我这边改变
我添加了funtionallity来禁用自动滚动到突出显示的选项:
像这样使用它:
$('your_select').chosen({
scroll_to_highlighted: false
});
参数’scroll_to_highlighted’是可选的,默认为true
最佳答案
原文链接:https://www.f2er.com/jquery/427758.html