使用 JQuery .focus() 之后插入符/光标并未[真正]获得焦点

发布于 2024-11-25 09:07:18 字数 378 浏览 1 评论 0原文

我试图在用户从自动完成下拉列表中选择一个值(使用jquery)后将焦点设置到下一个输入框。

所以代码如下所示:

函数 showElement(元素名称) { $(elementName).show('blind', onElementDisplay(elementName)); }

 function onElementDisplay(elementName) {
     $(元素名称).focus();
 }

我希望看到光标/插入符号在函数末尾显示的元素上闪烁,因此用户可以开始输入,但是,它不会发生。

我在这里缺少什么吗?

i'm trying to set the focus to the next input box after the user select a value from the autocomplete drop down (using jquery).

so the code look like this:

function showElement(elementName) {
$(elementName).show('blind', onElementDisplay(elementName));
}

 function onElementDisplay(elementName) {
     $(elementName).focus();
 }

so i would expect to see the cursor/caret blinking on the element that was displayed at the end of the function, hence the user can start type in, however, it doesn't happen.

anything i'm missing here?

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

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

发布评论

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

评论(1

风吹过旳痕迹 2024-12-02 09:07:18

第二个参数是回调(函数类型)。您向其传递 onElementDisplay 的返回值,这将是 undefined

添加匿名函数包装器。

function showElement(elementName) { 
    $(elementName).show('blind', function(){
        onElementDisplay(elementName); 
    });
}

function onElementDisplay(elementName) {
    $(elementName).focus();
}

The second argument is a callback (type Function). You are passing it the return of onElementDisplay, which would be undefined.

Add an anonymous function wrapper.

function showElement(elementName) { 
    $(elementName).show('blind', function(){
        onElementDisplay(elementName); 
    });
}

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