如何使输入字段像键盘处于改写模式一样起作用?
当用户输入值但什么也没有发生时,我尝试使用键控代码中的删除按钮触发键控事件.
解决方法:
就像是:
<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);">