日期:2014-05-16 浏览次数:20355 次
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title></title>
<head>
<script>
document.onkeydown = function()
{
var oEvent = window.event;
if (oEvent.keyCode == 67 && oEvent.ctrlKey) {
alert("你按下了ctrl+c");
}
}
</script>
</head>
<body >
</body>
</html>