如何在following code?
中获取所选文字我使用的是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 />");
});
答案 0 :(得分:2)
查看其他SO帖子。希望这可以帮助。 ;)
How to get selected text from textbox control with javascript
答案 1 :(得分:1)