热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

如何让JavaScript执行键盘组合-HowtomakeJavaScriptexecutekeyboardcombinations

IwaswonderingifthereisawaytomakeJavaScriptexecutekeyboardcombinations.我想知道是否有办法让JavaS

I was wondering if there is a way to make Javascript execute keyboard combinations.

我想知道是否有办法让Javascript执行键盘组合。

I am making an application in Electron and I can't get my custom Minimize and Maximize buttons to work on Windows. I tried running the application on Mac and it works perfectly. So I was thinking about just making a button that can execute keyboard commands.

我正在Electron中创建一个应用程序,我无法在Windows上使用自定义的最小化和最大化按钮。我尝试在Mac上运行应用程序,它运行得很好。所以我在考虑制作一个可以执行键盘命令的按钮。

1 个解决方案

#1


0  

It would be alt+space+n to minimize but secure reasons I guess it won't work.

这将是alt + space + n以最小化但安全的原因我猜它不会起作用。

$("#minimize").click(function() {
    var e = jQuery.Event("keydown");
    //e.which = 115;       // # F4 code value
    e.altKey = true;     // Alt key pressed
    e.which = 32;      //space key
    //e.which = 78;      //n key
    $("#minimize").trigger(e);

});

推荐阅读
author-avatar
傻咾厷叫我洪儿
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有