any way to detect ctrl + click in javascript for osx browsers? no jQuery
问题 using vanilla js. Any way to grab the "right-click" (option-click) from OSX? function clickey(e) { if(event.button==2 || /*how you'd do it in Java=)*/ e.getButton() == MouseButton.BUTTON3 ) ... } but in js, how do eeet? 回答1: You need to listen to the contextmenu event. This is triggered when the context menu should be shown. So either if the right mouse butten or or ctrl + mouse . If it is not supported then you can try to check the mousedown event where button is 2 and ctrlKey is true if it