如何编写快捷键html5的代码,如下面的图片链接。
答案 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 */
}
});