我有文字输入:

<input type="text" onkeydown="processText(this)" />


我有处理功能:

function processText(sender)
{
  console.log(sender.value);
  /// processing....
}


但是随后我检查了我的值,它的内容尚未更新。
我怎样才能做到这一点?

最佳答案

使用onkeyup代替:

<input type="text" onkeyup="processText(this)" />

10-05 20:58