javascript,模拟键盘事件,在 chrome(webkit) 上工作
在 FF 中,我使用了这段代码:
if (keyCount == lineLimit) { // method in FF, no Chrome var mock = document.createEvent("KeyboardEvent"); // or KeysEvent mock.initKeyEvent("keypress",true,true,null,false,false,false,false,14,0); var x = document.getElementById('InputCategory'); // rise height before Enter $(this).height(div_height + font_height + offset_height); // mock Enter x.dispatchEvent(mock); // init keyCount keyCount = 0; }
它可以工作,但在基于 webkit 的浏览器(如 chrome)上无效。
所以我问谷歌,发现键盘事件是 DOM Level 3 事件之一,这里有一篇文章: http://www.w3.org/TR/DOM-Level-3-Events/
然后我就知道 /* initKeyboardEvent / 在 chrome 上不支持safari,/ initUIEvent */ 我已经尝试过,它也不起作用。
虚拟键盘事件真的可以在chrome上模拟吗?请帮助我:)
in FF, i've used this code:
if (keyCount == lineLimit) { // method in FF, no Chrome var mock = document.createEvent("KeyboardEvent"); // or KeysEvent mock.initKeyEvent("keypress",true,true,null,false,false,false,false,14,0); var x = document.getElementById('InputCategory'); // rise height before Enter $(this).height(div_height + font_height + offset_height); // mock Enter x.dispatchEvent(mock); // init keyCount keyCount = 0; }
it works, but could not be effective on webkit-based browsers like chrome.
so i asked google and found keyboard event is one of the DOM Level 3 events,here is an aticle: http://www.w3.org/TR/DOM-Level-3-Events/
then i knew /* initKeyboardEvent / is not supported on chrome & safari, / initUIEvent */ i've tried, it didn't work also.
Do virtual keyboard events reall can be simulated on chrome ? plesase help me :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是可行的,但它不会生成按键事件,而是生成文本插入事件。
这会在输入末尾插入单词“test”(在您的情况下,您可能会将其替换为
\n
。This works, but it's not generating a keypress-event, rather a text-insert event.
That inserts the word 'test' at the end of the input (in your case you'd probably replace that by
\n
.