脚本自动完成器问题

发布于 2024-07-15 10:03:21 字数 64 浏览 8 评论 0原文

在 Scriptaculous Ajax 自动编译器中,它默认选择第一个条目。 我如何阻止它默认选择第一个选项?

In Scriptaculous Ajax autocomplter it chooses the first entry by default . how do i stop it from choosing the first option by default??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

百善笑为先 2024-07-22 10:03:21

在 Scriptaculous 库的 controls.js 中,第 286 行:更改“this.index = 0;” 到“this.index = -1;”。 这将解决你的问题。

令人痛苦的是没有类似 { autoSelectFirst: false } 的选项。 希望在未来的版本中:)

另一方面,您可能想看看: http:// docs.jquery.com/Plugins/Autocomplete

它允许您禁用选择开箱即用的第一个选项。

In controls.js of the Scriptaculous library, on line 286: change "this.index = 0;" to "this.index = -1;". That will fix your problem.

It's a pain that there's no option along the lines of { autoSelectFirst: false }. Hopefully in a future release :)

On another note, you might want to have a look at: http://docs.jquery.com/Plugins/Autocomplete

which lets you disable selecting the first option out of the box.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文