自动建议 - 激活键盘箭头以查看列表

发布于 2024-09-28 13:29:30 字数 210 浏览 3 评论 0原文

上述网站上的http://localapartmentdeals.com/

有一个地址栏,如果您输入任何州(美国)它将显示一个自动建议列表,但不允许键盘敲击来选择列表,

例如:那里没有向下箭头。

有任何帮助请

谢谢 开发

http://localapartmentdeals.com/

on the above site there is a location bar and if you type any state (US) it will display an autosuggest list but it will not allow key board strokes to select the list,

eg: no down arrow is working there.

any help please

thanks
deve

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

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

发布评论

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

评论(1

一生独一 2024-10-05 13:29:30

看起来没有检测到箭头键,您必须实现它。

您应该在 function suggest 的某个位置有一个处理箭头键的代码,例如:

...
switch(keyCode) {
    case 38: 
        //up arrow, highlight previous entry
        break;
    case 40: //down arrow 
        //up arrow, highlight next entry
        break;
    ...
}

It doesn't look the arrow keys are detected, you have to implement it.

You should have somewhere in the function suggest a code that handle the arrow keys like:

...
switch(keyCode) {
    case 38: 
        //up arrow, highlight previous entry
        break;
    case 40: //down arrow 
        //up arrow, highlight next entry
        break;
    ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文