我希望能够在用户按下ALT + v时触发警告框。
使用与此类似的功能:
$(document).ready(function() {
$("body").keypress(function(event) {
if (event.which == alt+v) {
alert('text to display in alert box');
}
});
});
答案 0 :(得分:1)
找出答案:
$(document).keydown(function (e) {
if (e.keyCode == 113) {
alert("alert text");
}
});