当我在<div>
中选择一些文字时,我希望突出显示的文字出现在div正下方的文本框中。我该怎么办?
<div>
My text goes here.
</div>
<asp:TextBox ID="txt" runat="server"/>
答案 0 :(得分:4)
工作演示 http://jsfiddle.net/KgtW5/ 或使用DIV演示 http://jsfiddle.net/KgtW5/3/
.on
API:http://api.jquery.com/on/
我已根据您的需要定制了它。
良好的链接:和BIG提示:Get the Highlighted/Selected text
希望演示可以帮助你,知道我是否遗漏了任何东西! :)
<强>码强>
$('textarea').on('select', function() {
var foo = getSelectionText();
$('#hulk').val(foo);
});
function getSelectionText() {
var text = "";
if (window.getSelection) {
text = window.getSelection().toString();
} else if (document.selection && document.selection.type != "Control") {
text = document.selection.createRange().text;
}
return text;
}
html
<textarea>Some default text; HUlk is very cool innit</textarea>
<br/>
<input type="text" id="hulk" />
图片强>