OnClick 选择 text_field 轨道中的所有文本
有没有一种 Rails 方法可以使文本字段在单击时选择所有文本?如果不是,我怎样才能让 JavaScript 添加这种类型的功能?
<% text_field value => "highlight this", :after => "onClick="SelectAll('txtfld');"" %>
is there a rails way to enable a text_field to select all text upon clicking on it? If not how can I enable the JavaScript to add that type of functionality?
<% text_field value => "highlight this", :after => "onClick="SelectAll('txtfld');"" %>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议阅读这篇文章:
在点击文本框中突出显示文本
这正是您想要的。
I recommend reading this article:
highlight text on click textbox
It is exactly what you want.
如果您使用 jQuery,这非常简单且方便。
将其添加到您的 javascript 文件中:
之后,将类名
select_all_text
添加到您想要具有该功能的字段:If you are using jQuery, this is very easy and convenient.
Add this to your javascript file:
After that, add the class name
select_all_text
to the fields you want to have the functionality: