Setfocus 属性(使用自定义自动完成,我在将此列表添加为子列表时将焦点设置为 autoCompleteList)

发布于 2024-08-20 06:54:24 字数 115 浏览 5 评论 0原文

我在添加此列表作为子项时将焦点设置为 auotoCompleteList,但在删除此弹出窗口时,我在 textInput 中获取了带有黑色背景的选定的整个文本,我想将焦点设置到此文本字段,但不选择整个键入的内容文本。

I set the focus to auotoCompleteList at the time of adding this list as child but at the time of remove this popup i am getting whole text in textInput as selected with black background iwant to set the focus to this text field but not to select whole typed text.

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

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

发布评论

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

评论(1

自此以后,行同陌路 2024-08-27 06:54:24

如果有人需要这个,我得到了解决方案,然后使用下面的代码

//第一个设置选择
textInput.setSelection(textInput.text.length+1,textInput.text.length+1);
// 然后设置焦点
textInput.setFocus();
//然后用它来显示光标
flash.ui.Mouse.show() ;

I got the solution if anyone need this then use below code

//first set selection
textInput.setSelection(textInput.text.length+1,textInput.text.length+1);
// then set focus
textInput.setFocus();
//and then use this to show cursor
flash.ui.Mouse.show() ;

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