jQuery监听多键按下的实例
<!doctype html>
<html lang="en">
<head>
<meta name="Description" content="">
<title>jQuery监听多键按下的实例</title>
<!--引入js-->
<script src="http://libs.baidu.com/jquery/1.7.0/jquery.min.js"></script>
</head>
<body class="body">
<input class="input_01" />
<input class="input_01" />
<input class="input_01" />
<input class="input_01" />
<input class="input_01" />
<input class="input_01" />
<script>
$('.input_01').keydown(function(e){
if (e.ctrlKey && e.keyCode == 65)
{
$('.input_01').val($(this).val());
}
});
</script>
</body>
</html>
在其中一个文本框里面输入内容,然后按下Ctrl+A,可以将文本复制到其他输入框中