从MDN InputEvent()文档:
event = new InputEvent(typeArg, inputEventInit);
typeArg是一个DOMString,表示事件的名称。
什么是有效的“名称”?我找不到任何资源表明这一点。我想为测试复制一个打字事件。
最佳答案
它在Section 5.2 of the Input Events Level 2 Specification中列出,分别为input
和beforeInput
。这也在Section 4.5.3 of the UI Events Specification中列出。
关于javascript - InputEvent构造函数的typeArg参数的有效字符串是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48101697/