我有一个文本框,我想要多少个字符的动态字符计数
被排除在总最大限制= 500之内。
<asp:TextBox ID="TextBox2" runat="server" TextMode="MultiLine" Width="300" Height="100">asp:TextBox>
最佳答案
您可以使用val.value.length
在文本框/文本区域中获取许多字符。
function countChar(val) {
var len = val.value.length;
if (len >= 500) {
val.value = val.value.substring(0, 500);
} else {
$('.numbersofChart').text(500 - len);
}
};
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<textarea id="TextBox2" onkeyup="countChar(this)"></textarea>
<div class="numbersofChart"></div>
关于javascript - 使用JS/Jquery的asp.net文本框的动态字符计数?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44493510/