這次帶給大家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>
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
#
以上是jQuery操作輸入框統計字數的詳細內容。更多資訊請關注PHP中文網其他相關文章!