jQueryを使用してテキストエリアに単語と文字数を追加しようとしましたが、見つけたのは文字と単語を制限するプラグインだけです。
ユーザーが文字または単語を追加するたびにカウンターが更新されるように、リアルタイムで更新したいと思います。
単語や文字を簡単に確認する方法はありますか?
jQueryを使用してテキストエリアに単語と文字数を追加しようとしましたが、見つけたのは文字と単語を制限するプラグインだけです。
ユーザーが文字または単語を追加するたびにカウンターが更新されるように、リアルタイムで更新したいと思います。
単語や文字を簡単に確認する方法はありますか?
function wordCount(val) {
var wom = val.match(/\S+/g);
return {
charactersNoSpaces: val.replace(/\s+/g, '').length,
characters: val.length,
words: wom ? wom.length : 0,
lines: val.split(/\r*\n/).length
};
}
var textarea = document.getElementById('text');
var result = document.getElementById('result');
textarea.addEventListener('input', function() {
var wc = wordCount(this.value);
result.innerHTML = (`
<br>Characters (no spaces): ${wc.charactersNoSpaces}
<br>Characters (and spaces): ${wc.characters}
<br>Words: ${wc.words}
<br>Lines: ${wc.lines}
`);
});
<textarea id="text" cols="30" rows="4"></textarea>
<div id="result"></div>
char_count = $("#myTextArea").val().length;
word_count = $("#myTextArea").val().split(" ").length;
var txt = $('.content')[0].text()
, charCount = txt.length
, wordCount = txt.replace( /[^\w ]/g, "" ).split( /\s+/ ).length
;
$( '#somwhereInYourDocument' ).text( "The text had " + charCount + " characters and " + wordCount +" words" );
jQueryなし:
this.innerHTML gives you the textarea content.
this.innerHTML.length gives you the number of characters.
jQuery の場合:
$(this).html()
等
簡単な単語カウントアルゴリズムを思いつくことができると確信しています.
jQuery(document).ready(function(){
var count = jQuery("#textboxid").text().length;
});