如何在jQuery中按下ctrl + shift + m的按键?
我尝试了下面的单键代码。它工作。但我想同时触发所有三个键。
FileInputStream fis = new FileInputStream(fd.getFileDescriptor());
byte[] buf = new byte[fis.available()];
fis.read(buf);
String vcardstring = new String(buf);
vCard.add(vcardstring);
答案 0 :(得分:0)
您可以使用上面的代码控制它
if ( e.ctrlKey && e.shiftKey && ( e.which === 77 ) ) {
console.log( "You pressed CTRL + Shift + m" );
}
希望它有所帮助!! :)