本文介绍了Textarea onchange检测的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用javascript检测textarea上的更改事件?
我正在尝试检测您键入时剩余的字符数。
How do I detect change event on textarea using javascript?
I'm trying to detect how many characters left is available as you type.
我尝试使用onchange事件,但这似乎只在焦点出现时启动。
I tried using the onchange event, but that seems to only kick in when focus is out.
推荐答案
你需要使用 onkeyup
和 onchange
。该平变化会阻止上下文菜单粘贴,并会的onkeyup火每个按键。
You will need to use onkeyup
and onchange
for this. The onchange will prevent context-menu pasting, and the onkeyup will fire for every keystroke.
请参阅上的最大长度。
这篇关于Textarea onchange检测的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!