我正在尝试将以下内容转换为通过单击按钮而不是在 keyup 事件上执行。这是一个文本限制器。用户输入文本,我想通过单击按钮将此文本限制(修剪)为 75 个字符。
<p>Type something in the textbox below: </p>
<textarea id="message" name="message" rows="4" cols="30"></textarea>
<div class="charLeft" id="countCharacter">75 characters left</div>
<script>
function CountLeft(field, max) {
if (field.val().length > max)
field.val(field.val().substring(0, max));
else
jQuery(".charLeft").html((max - field.val().length) + " characters left");
}
jQuery("#message").keyup(
function(event) {
CountLeft(jQuery(this), 75); // you can increase or derease the number depend on your need.
});
</script>