我知道我有一个类似的帖子,但它只回答了我的部分问题。
她是我的挑战:你可以让警报显示正确的字符数吗? 即使你按退格键?
以下是代码:
jQuery('#input_Name').keydown(function(e) {
var count = $(this).val().length;
alert(count+1);
});
提示:退格的ascii键是8(if (e.keyCode != 8)
)
(我无法做到这一点)
答案 0 :(得分:4)
jQuery('#input_Name').keyup(function(e) {
var count = $(this).val().length;
alert(count)
});