赞
踩
//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);
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。