Php如何为网站创建键盘快捷键

时间:2013-09-06 12:00:11

标签: php jquery html mysql

我想知道如何在我的动态Php网站上添加像twitter这样的键盘快捷键功能?例如( shift + c - 用于评论)。

3 个答案:

答案 0 :(得分:1)

看看http://www.javascripter.net/faq/keycodes.htm

例如

$(document).keypress(function(e) {
                if (e.which === 13) {
                    $("#select").trigger('click');
                }
            });

答案 1 :(得分:0)

  $(document).keydown(function(e){
    var keycode=e.keyCode;
    if (keycode == 27)
     {
                  $("#change").trigger('click');
     }
});
  $("#change").click(function() {
  //do what you need
  if($("#radio:checked").length==0)
    {
        alert("abc");
        return false;
    }
});

答案 2 :(得分:0)

$('#saber').keypress(function(e){
    e.preventDefault();
    if(e.altKey && e.charCode==67){
        //do anything!
    }
});

注意:您可以使用ctrlKeyshiftKey代替altKey,67是'c'character的字符代码;另一个字符列在@sukhjit链接中。