Jquery 已选择 Select 滚动问题
Jquery Chosen Select scroll issue
我正在使用 JQuery 选择的插件,选择单个 select。当我打开下拉列表时,其中列出了一些已加载的值集。它还显示了垂直滚动。我可以使用滚动条和鼠标滚动来滚动,但我无法 select 特定项目。当鼠标悬停在项目上时,下拉菜单会将我带到列表的末尾。
帮我解决这个问题。
我找到了这个问题的答案。
感谢你们花时间在这上面
答案是
在 chosen.jquery.min.js 文件中,代码类似于
c = this.result_highlight.position().top + this.search_results.scrollTop(),
将上面的行替换为
c = this.result_highlight.position().top,
然后滚动问题将得到解决。
根据这个问题https://github.com/harvesthq/chosen/issues/2504#issuecomment-194773350
更新 jQuery 库后问题似乎解决了。
I can confirm that upgrading to jQuery version 1.12.1 fixes the issue. 1.12.0 is the one with the issue.
-- DrowningElysium
我正在使用 JQuery 选择的插件,选择单个 select。当我打开下拉列表时,其中列出了一些已加载的值集。它还显示了垂直滚动。我可以使用滚动条和鼠标滚动来滚动,但我无法 select 特定项目。当鼠标悬停在项目上时,下拉菜单会将我带到列表的末尾。
帮我解决这个问题。
我找到了这个问题的答案。 感谢你们花时间在这上面
答案是
在 chosen.jquery.min.js 文件中,代码类似于
c = this.result_highlight.position().top + this.search_results.scrollTop(),
将上面的行替换为
c = this.result_highlight.position().top,
然后滚动问题将得到解决。
根据这个问题https://github.com/harvesthq/chosen/issues/2504#issuecomment-194773350 更新 jQuery 库后问题似乎解决了。
I can confirm that upgrading to jQuery version 1.12.1 fixes the issue. 1.12.0 is the one with the issue.
-- DrowningElysium