在输入文本字段中进行选择的最简单方法是什么?
如何获取 以下代码 中选定的文本?
我使用 Firefox 3.6.3(目前对其他浏览器不感兴趣)。
HTML:
<input id="my_text_field" type="text" />
<div id="log"></div>
JavaScript:
$("#my_text_field").select(function() {
var selected_text = "Something selected"; // What should be here ?
$("#log").append(selected_text + "<br />");
});
How could I get the selected text in the following code ?
I working with Firefox 3.6.3 (currently not interested in other browsers).
HTML:
<input id="my_text_field" type="text" />
<div id="log"></div>
JavaScript:
$("#my_text_field").select(function() {
var selected_text = "Something selected"; // What should be here ?
$("#log").append(selected_text + "<br />");
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看其他 SO 帖子。希望这有帮助。 ;)
如何使用 javascript 从文本框控件获取选定的文本
Check out this other SO post. Hope this helps. ;)
How to get selected text from textbox control with javascript
看看这个插件:
http://labs.0xab .cd/jquery/fieldselection/0.2.3-test/test.html
Have a look at this plugin:
http://labs.0xab.cd/jquery/fieldselection/0.2.3-test/test.html