强制页面上所有文本区域的最大长度
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了强制页面上所有文本区域的最大长度相关的知识,希望对你有一定的参考价值。
Just be sure to slap the div for the chars left message within the same div/p as the textarea so the dom walk works.
$('textarea').keyup(function () { var max = 4000; if ($(this).val().length > max) { $(this).val($(this).val().substr(0, max)); } $(this).parent().find('.chars_remaining').html('You have ' + (max - $(this).val().length) + ' characters remaining').show(); }); //hide chars remaining count on blur $('textarea').blur(function () { $('.chars_remaining').fadeOut('fast'); }); //and in the front end: <span class="chars_remaining ui-state-highlight"></span>
以上是关于强制页面上所有文本区域的最大长度的主要内容,如果未能解决你的问题,请参考以下文章