You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hotkeys/test/test.html

27 lines
721 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>hotkeys</title>
<script type="text/javascript" src="../src/hotkeys.js"></script>
</head>
<body>
<textarea></textarea>
<div contentEditable="true" style="height: 200px;width: 400px;border: 1px solid red;"></div>
<script type="text/javascript">
hotkeys.filter = function(event){
// console.log("message123123123",event.target);
return true;
}
// 定义a快捷键
hotkeys('⌘+a,;,-,=',function(event,handler){
//event.srcElement: input
//event.target: input
// console.log("message22323:",event.target);
console.log("---->",handler)
});
</script>
</body>
</html>