如何选择(突出显示)输入文本框中的文本
您好,我正在使用 haml 和 coffescript 来编写我的代码。
代码片段如下
//haml code for input box and value
%input.detail_text{value: "<%= 'http://dailymus.es/#!/' + answer.user.nickname + '/muses/' + answer._id %>"}
文本输入显示(在模态中)
如何修改我当前的coffescript代码这样当我渲染模态视图时,框中的文本将突出显示,如上所示。
我尝试使用以下代码但无济于事
//code to render the modal view
render: ->
$(@el).html @template(@model.toJSON())
//this is where I attempt to select the input box via jQuery and selecting the text
$(@el).find('input.detail_text').focus().select()
@
提前致谢
Hi I am using haml and coffescript to write my code.
The code snippets are as follows
//haml code for input box and value
%input.detail_text{value: "<%= 'http://dailymus.es/#!/' + answer.user.nickname + '/muses/' + answer._id %>"}
Text input display (in a modal)
How can I modify my current coffescript code so that when I render my modal view, the text in the box will be highlighted as shown above.
I tried with the following code with no avail
//code to render the modal view
render: ->
$(@el).html @template(@model.toJSON())
//this is where I attempt to select the input box via jQuery and selecting the text
$(@el).find('input.detail_text').focus().select()
@
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是选择范围的更高级功能:
学分: http://programanddesign.com/js /jquery-select-text-range/
Here is more advanced function to select range:
Credits: http://programanddesign.com/js/jquery-select-text-range/