Setfocus 属性(使用自定义自动完成,我在将此列表添加为子列表时将焦点设置为 autoCompleteList)
我在添加此列表作为子项时将焦点设置为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果有人需要这个,我得到了解决方案,然后使用下面的代码
//第一个设置选择
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() ;