Scriptaculous 自动完成:返回链接列表,希望单击链接而不是自动填充输入字段
我正在使用 scriptaculous 的自动完成功能。我返回一个无序列表,但每个元素都是一个链接。例如,
<ul>
<li><a href="link1">Link 1</a></li>
<li><a href="link2">Link 2</a></li>
</ul>
如果您使用箭头键向下滚动列表并按 Enter 键,自动完成功能将仅抓取文本,而不是像其设计的那样激活链接。我想要的是自动完成功能转到新页面。有什么办法可以做到这一点,而且我编辑脚本代码来做到这一点没有问题。
I am working with scriptaculous' autocomplete. I am returning an unordered list but each element is a link. For example,
<ul>
<li><a href="link1">Link 1</a></li>
<li><a href="link2">Link 2</a></li>
</ul>
If you scroll down the list using the arrow keys and hit enter, Autocomplete will only grab the text instead of activating the link, as it is designed to do. What I want, is for autocomplete to go to the new page. Is there any way to do this, and I have no problem editing the scriptaculous code to do so.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 afterUpdateElement,如 http://madrobby.github.com/scriptaculous/ajax 上的示例所示-自动完成器/
Use the afterUpdateElement, as in the example on http://madrobby.github.com/scriptaculous/ajax-autocompleter/