我有一个字符剩余脚本,可用于 keyup、keypress、blur 和 change。我需要在加载时添加该组合。这是我的代码:
$('#title_remaining').html(title);
$('#postshow_showtitle').on('keyup keypress blur change',function() {
var text_length = $('#postshow_showtitle').val().length;
var text_remaining = title - text_length;
$('#title_remaining').html(text_remaining);
});