如何使用语音键盘将英语转换为我想要的语言?

时间:2017-02-05 17:24:32

标签: javascript ckeditor dispatchevent

我正在使用Ckeditor,我希望使用语音字符转换将英语转换为我想要的语言。 我已成功转换它,但目标上的已分派事件未向我显示要编辑的新字符。

newEvent.initKeyEvent("keypress", true, true, window,false, false, false, false, 0, codes[whichChar]);
e.target.dispatchEvent(newEvent);

控制台正在向我显示:

keypress { target: <body.cke_editable.cke_editable_themed.cke_contents_ltr.cke_show_borders>, key: "", charCode: 1726, keyCode: 0 }

并且调度事件返回true但在编辑器中没有显示任何内容且目标也是正确的。

0 个答案:

没有答案