今回は、入力ボックスを操作するときに単語数を数えるjQueryをご紹介します。 jQueryで入力ボックスを操作して単語数を数える場合の注意点
について、実際のケースを紹介します。見てください。<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> <script src="jquery-1.7.2.min.js"></script> </head> <body> <p class="container"> <input id="abc"value=""><span id="WordCountShow"></span> </p> <script> $.fn.extend({ wordCount:function(maxLength, wordWrapper) { varself =this; $(self).attr("maxlength", maxLength); showWordCount(); $(this).on("input propertychange", showWordCount); functionshowWordCount() { curLength = $(self).val().length; varleaveCount = maxLength - curLength; wordWrapper.text(leaveCount +"/"+ maxLength); } } }) $(function() { $("#abc").wordCount(10, $("#wordCountShow")); }) </script> </body> </html>
以上がjQueryは入力ボックスを操作して単語数をカウントしますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。