我想限制一个人可以在文本字段中输入的字数。输入每个单词时,如何跟踪该字段中的单词数(通过使用第二个字段)?
eregelma
问问题
967 次
2 回答
2
使用这个js(使用jquery):
$('#newKeywords').bind('change', function() {
$('#wordsLong').text($('#newKeywords').val().split(' ').length + 1);
});
这个html:
<textarea id="newKeywords"></textarea>
<div>The text consists of <span id="wordsLong"></span> keywords.</div>
于 2010-03-09T11:22:32.953 回答
0
于 2008-10-15T22:07:03.467 回答