2

我怎样才能让我的输入字段就像键盘处于改写模式一样?

当用户输入值但没有任何反应时,我尝试使用键码中的删除按钮触发按键事件。

4

2 回答 2

1

就像是:

<input onkeydown="this.oldSize = this.value.length;" 
  onkeypress="var n = this; setTimeout(function() {
      if(n.value.length > n.oldSize) {
        var s = n.selectionStart;
        n.value = n.value.substr(0, s) + n.value.substr(s + 1);
        n.selectionStart = n.selectionEnd = s;
      }
    },10);">
于 2012-07-16T13:19:36.233 回答
0

好吧,我不知道你想做什么。也许这会对你有所帮助。

Keymaster 是一个简单的(100 LoC 左右)微型库,用于定义和调度键盘快捷键。它没有依赖关系。

https://github.com/madrobby/keymaster#readme

于 2012-07-16T12:11:33.357 回答