用户按ALT + v时触发警告框

时间:2013-06-19 15:46:04

标签: javascript jquery alert

我希望能够在用户按下ALT + v时触发警告框。

使用与此类似的功能:

$(document).ready(function() {
        $("body").keypress(function(event) {
            if (event.which == alt+v) {
            alert('text to display in alert box');
        }
    });
});

1 个答案:

答案 0 :(得分:1)

找出答案:

$(document).keydown(function (e) {
    if (e.keyCode == 113) {
        alert("alert text");
    }
});