我需要在 id="message" 的文本区域中选择一些文本,然后获取其字符数。
我假设需要带有 .length() 的东西,但我不确定实际获取所选文本需要什么,然后用它来确定它的长度。
提前致谢
我想你正在为此努力
$("#message").text().length;
编辑:
$("button").click(function(){
var txt=document.getElementById("message");
alert(txt.value.substr(txt.selectionStart, (txt.selectionEnd -txt.selectionStart)).length);
});
试试这个:-
<textarea id="Editor"></textarea>
<input type="button" id="p" value="get text"/>
在 jquery 中:-
$('#p').on('click', function () {
var textComponent = document.getElementById('Editor');
var selectedText;
var startPos = textComponent.selectionStart;
var endPos = textComponent.selectionEnd;
selectedText = textComponent.value.substring(startPos, endPos)
alert("You selected: " + selectedText.length);
});