为 javascript 中具有焦点的文本框设置一个值
大家好, 我有三个文本框和一个列表框...如果用户单击第一个文本框,然后单击列表项,则所选项目必须设置为文本框的值...我想要在 javascript 中这样做...
Hai guys,
I have three textboxes and one listbox... If the user clicks the first textbox and then click a list item the selected item must be set as value to the textbox... I want this in javascript....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将以下代码用于将 SelectionMode 属性设置为 Single 的列表框。
并将其写入文本框元素的 onfocus 事件中。
示例代码
Use the below code for listbox with SelectionMode attribute set to Single.
and write this inside the onfocus event of the textbox element.
Sample Code
我认为您正在寻找 onBlur。您可以保留最后查看的项目的变量,然后仅使用 JavaScript 来设置文本。
I think you're looking for onBlur. You can keep a variable with the last item viewed and just use JavaScript to set the text.