回答:
イベントのプロパティから、Shiftキー、Altキー、およびControlキーを簡単に検出できます。
$("button").click(function(evt) {
if (evt.ctrlKey)
alert('Ctrl down');
if (evt.altKey)
alert('Alt down');
// ...
});
その他のプロパティについては、quirksmodeを参照してください。他のキーを検出する場合は、cletusの回答を参照してください。
if (e.metaKey) alert('Command down')
。JS unixpapa.com/js/key.htmlの
keydown()
およびを使用して、キーのステータスを個別に追跡する必要がありますkeyup()
。
var ctrlPressed = false;
$(window).keydown(function(evt) {
if (evt.which == 17) { // ctrl
ctrlPressed = true;
}
}).keyup(function(evt) {
if (evt.which == 17) { // ctrl
ctrlPressed = false;
}
});
$("button").click(function() {
if (ctrlPressed) {
// do something
} else {
// do something else
}
});
JavaScriptだけでも使えるようになりました
<a href="" onclick="return Show(event)"></a>
function Show(event) {
if (event.ctrlKey) {
alert('Ctrl down');
}
}
@Arun Prasadのthunderを盗むことなく、デフォルトのアクションを停止するために再ハッシュした純粋なJSスニペットは次のとおりです。
function Show(event)
{
if (event.ctrlKey)
{
alert('Ctrl held down which clicked');
}
else
{
alert('Ctrl NOT pressed');
}
return false
}
<p>Hold down CTL on the link to get a different message</p>
<a href="" onclick="return Show(event)">click me</a>