如何在 Javascript 中 [仅] 发送 shift 键?

How do I send [only] the shift key in Javascript?

有没有办法在 Javascript 中只发送 shift 键(不与其他键组合)?

我知道我可以evt.shiftKey检测 shift键,但我如何发送只有shift键?

我试过:

$.event.trigger({type:'keypress', which : character.charCodeAt(16) });

我的 console.log 给我:Uncaught ReferenceError: character is not defined

使用 KeyboardEvent 作为 构造函数 你可以在 vanilla JavaScript[=15= 中执行以下操作]

var e = new KeyboardEvent('keypress', {shiftKey: true});
node.dispatchEvent(e);

其中 node 是目标元素


更完整

function press_shift(target, /*optional*/ bubbles, /*optional*/ events) {
    var o = {shiftKey: true};
    if (bubbles) o.bubbles = true;
    if (!events && events !== 0) events = -1;
    if ((events & 1) === 1) target.dispatchEvent(new KeyboardEvent('keydown', o));
    if ((events & 2) === 2) target.dispatchEvent(new KeyboardEvent('keypress', o));
    if ((events & 4) === 4) target.dispatchEvent(new KeyboardEvent('keyup', o));
}
press_shift.keydown = 1;
press_shift.keypress = 2;
press_shift.keyup = 4;

// and then for example, to just do a keypress which bubbles up the DOM
press_shift(document.body, true, press_shift.keypress);

您可以改用 "keydown" 事件。它会给你想要的结果。

document.addEventListener('keydown', function(evt){
   console.log(evt);
});