脚本自动完成器问题
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 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.