更改按键
在输入框或 contenteditable=true div 中,如何修改字母“a”的按键以返回字母“b”的按键?即,每次在div中输入字母“a”时,输出实际上是字母“b”。
我并不关心在 IE 中工作的解决方案 - 只是在 Safari、Chrome 和 Chrome 中工作的解决方案。 FF。
在 Chrome 中,我可以看到按键事件具有属性“charCode”、“keyCode”和“which”,所有这些属性都被分配了按键事件编号。如果我在按键上触发事件,我可以修改这些值,但我无法弄清楚要返回什么,因此输入的实际键是不同的。例如:
$(window).keypress(function(e){ //$(window) is a jQuery object
e.charCode = 102;
e.which = 102;
e.keyCode = 102;
console.log(e);
return e;
});
我还可以看到,除了 charCode、which 和 keyCode 之外,还有一个“originalEvent”属性,该属性又具有这些属性。但是,我无法修改这些(我尝试使用 e.originalEvent.charCode = 102 之类的东西)。
In an input box or contenteditable=true div, how can I modify a keypress for the letter "a" to return a keybress for the letter "b"? I.e., every time you type the letter "a" in the div, the output is actually the letter "b".
I'm not that concerned with a solution that works in IE--just one that works in Safari, Chrome, & FF.
In Chrome, I can see that a keypress event has the properties "charCode", "keyCode", and "which", all of which get assigned the keypress event number. If I fire an event on a keypress, I can modify these values, but I can't figure out what to return so that the actual key that gets typed is different. For example:
$(window).keypress(function(e){ //$(window) is a jQuery object
e.charCode = 102;
e.which = 102;
e.keyCode = 102;
console.log(e);
return e;
});
I can also see that along with charCode, which, and keyCode, there is also an "originalEvent" property which in turn also has these properties. However, I haven't been able to modify those (I tried with things like e.originalEvent.charCode = 102).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
我不确定这是否“容易”做到,就像这样:
我确实知道 jQuery 有一个模拟插件来模拟按键事件等,jQuery 模拟。它可能值得研究 - 也可能是某种类型的 jQuery Trigger() 事件。
I'm not sure if this is "easily" do-able, with something like this:
I do know that jQuery has a simulate plug-in to simulate keypress events etc, jQuery Simulate. It might be worth looking into - also possibly some type of jQuery Trigger() event.
我也遇到了这个问题。最后我通过以下代码解决了这个问题:
它已经过测试。它在我的项目中发挥了作用。
I was also faced this problem. and Finally I solved it by following code:
It's tested. It has worked in my project.
您无法更改与按键事件关联的字符或按键,也无法完全模拟按键事件。但是,您可以自己处理按键并在当前插入点/插入符处手动插入所需的字符。我在 Stack Overflow 上的许多地方提供了执行此操作的代码。对于
contenteditable
元素:这是一个 jsFiddle 示例:http://www.jsfiddle.net/Ukkmu/4/
对于输入:
我可以有条件地更改在输入中输入的字符吗按键?
显示与 google chrome 中输入的键盘字符不同的键盘字符
浏览器 jsFiddle 示例: http://www.jsfiddle.net/EXH2k/6/
IE > ;= 9 和非 IE jsFiddle 示例: http://www.jsfiddle.net/EXH2k/7/
You can't change the character or key associated with a key event, or fully simulate a key event. However, you can handle the keypress yourself and manually insert the character you want at the current insertion point/caret. I've provided code to do this in a number of places on Stack Overflow. For a
contenteditable
element:Here's a jsFiddle example: http://www.jsfiddle.net/Ukkmu/4/
For an input:
Can I conditionally change the character entered into an input on keypress?
show different keyboard character from the typed one in google chrome
Cross-browser jsFiddle example: http://www.jsfiddle.net/EXH2k/6/
IE >= 9 and non-IE jsFiddle example: http://www.jsfiddle.net/EXH2k/7/
这是一个使用 Vanilla JavaScript 将
,
替换为.
的简单示例Here a simple example to replace
,
to.
using Vanilla JavaScript我的解决方案示例(将
input[type=text]
中的字符','
更改为'.'
):My solution example (change in
input[type=text]
the character','
to'.'
):,您可以对
或
那么 方法可能无法处理所有可能的技巧,你可以用真正替换“按下”字符的东西来实现,但我不知道有什么方法可以真正做到这一点。
编辑 - 哦,我在超时处理程序中输入“修复”的示例的原因是,它确保浏览器有机会处理“按键”的本机行为“ 事件。当超时处理程序代码运行时,我们确信元素的值将被更新。我意识到这段代码有点货物崇拜的味道。
Well what you could do for an
<input>
or<textarea>
is just make sure that the value doesn't have any "a" characters in it:This approach probably couldn't handle all the possible tricks you could pull with something that really swapped out the "pressed" character, but I don't know any way to actually do that.
edit — oh, and the reason that I typed in that example with the "fixup" happening in a timeout handler is that it makes sure that the browser has the opportunity to handle the native behavior for the "keypress" event. When the timeout handler code runs, we're sure that the value of the element will have been updated. There's a touch of the cargo cult to this code, I realize.
这是一个不使用任何库的示例
Here is an example without using any libraries