当前位置:   article > 正文

textarea设置最大字数限制并实时显示输入字数_textarea显示字数限制数量

textarea显示字数限制数量
//html
 <textarea maxlength="300" lay-verify="required" id="PPP" class="layui-textarea" oninput="TextareaFontLength()" placeholder="" runat="server"></textarea>
<div style="text-align:right">
	<span id="span_Font_Length" style="font-size: 18px;"></span>
	<span style="font-size: 14px;">/</span>
	<span style="font-size: 14px;">300</span>
</div>
//JQ
//TextArea 实时显示字数
function TextareaFontLength() {
   var strTeatArea = $("[id$='PPP']").val().length;
   $("[id$='span_Font_Length']").text(strTeatArea);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/238721
推荐阅读
相关标签