html5中的快捷键(Alt + s或Alt + w等)

时间:2016-03-06 08:59:51

标签: html5

如何编写快捷键html5的代码,如下面的图片链接。

http://screencast.com/t/iHOJqwy9

1 个答案:

答案 0 :(得分:0)

似乎是一个重复的问题,但很少有可能的解决方案:

How to detect Ctrl+V, Ctrl+C using JavaScript?

$(document).ready(function()
{
    var ctrlDown = false;
    var ctrlKey = 17, vKey = 86, cKey = 67;
$(document).keydown(function(e)
{
    if (e.keyCode == ctrlKey) ctrlDown = true;
}).keyup(function(e)
{
    if (e.keyCode == ctrlKey) ctrlDown = false;
});

$(".no-copy-paste").keydown(function(e)
{
    if (ctrlDown && (e.keyCode == vKey || e.keyCode == cKey)) return false;
});

});

$(document).bind('keydown', 'ctrl+c', function(event){   
$.fancybox.close(); // if this is commented out, CTRL-C works just fine
return true;

});

$(document).keydown(function(e) {
if (e.keyCode == 67 && e.ctrlKey) {
    /* do your stuff */

    $("#test").text("copied!"); /* optional */
}

});

jquery hotkeys and CTRL-C