首頁  >  文章  >  web前端  >  jQuery操作輸入框統計字數

jQuery操作輸入框統計字數

php中世界最好的语言
php中世界最好的语言原創
2018-04-19 15:59:221887瀏覽

這次帶給大家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 cookie實作換膚效果

jQuery做出頁面遮罩層效果

#

以上是jQuery操作輸入框統計字數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn