弹性。替换文本输入中选定的文本
如何创建一个函数来替换每个列表中所选符号的文本 INPUT 中的所选文本?
谢谢
How do I to make a function that replaces the selected text in text INPUT on the symbol of the selected one from each list?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请尝试这个示例,它可能会有所帮助,谢谢
解释
如果您输入“Imran $”,它会在文本更改事件中将其替换为“Imran Hello”,您也可以使用任何其他事件
代码
Please try this sample it may be help full thanks
Explaination
If you type "Imran $" it will replace it with "Imran Hello" on text change Event you may also use any other event
Code
此示例在单击列表时将 TextInput 中的选定文本替换为列表文本
已编辑:需要修改嵌入 XML 文件作为数据源
XML 文件“messages.xml”{位于 Flex Source 的相同/根文件夹中}
嵌入 XML Flex 应用程序中的文件,使用
列表控件中的 MXML 组件修改,用于处理 XML
注意:程序中不需要进行其他更改
希望这会有所帮助
This Sampe Replace selected text in TextInput by List Text on Clicking List
EDITED: Modification needed Embed XML File as data source
XML File "messages.xml" {Its in same/root folder of Flex Source}
Embeding XML File in Flex Application, using MXML component
Modification in List Control, for working with XML
Note: No other changes required in Program
Hopefully this will help