テキストエリアで 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);
});