我正在使用jQuery。
目标:
问题:
这是一个片段:
editTweet.keydown(function(e) {
// Can i check if the (e) is going to increase the text
var left = Limit - editTweet.val().length;
if (left <= 0) {
return false;
}
spn.text(left);
});
答案 0 :(得分:0)
使用:
解决它 if (e.which < 0x20) {
// e.which < 0x20, then it's not a printable character
// e.which === 0 - Not a character
return; // Do nothing
}