3

テキストエリアで id="message" のテキストを選択し、その文字数を取得する必要があります。

私は .length() が必要であると仮定していますが、選択したテキストを実際に取得し、それを使用してその長さを決定するために何が必要かはわかりません。

前もって感謝します

4

2 に答える 2

4

私はあなたがこれのために努力していると思います

$("#message").text().length;

編集:

$("button").click(function(){
    var txt=document.getElementById("message");
    alert(txt.value.substr(txt.selectionStart, (txt.selectionEnd -txt.selectionStart)).length);
});
于 2013-07-16T10:07:03.957 に答える
2

これを試して:-

<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);
});

デモ http://jsfiddle.net/eQBYQ/4/

于 2013-07-16T10:33:08.593 に答える