我怎样才能让我的输入字段就像键盘处于改写模式一样?
当用户输入值但没有任何反应时,我尝试使用键码中的删除按钮触发按键事件。
就像是:
<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);">
好吧,我不知道你想做什么。也许这会对你有所帮助。
Keymaster 是一个简单的(100 LoC 左右)微型库,用于定义和调度键盘快捷键。它没有依赖关系。