87,990
社区成员
发帖
与我相关
我的任务
分享

new ActiveXObject ("WScript.Shell").SendKeys ("^a");
$(function () {
$(document).keyup(function (event) {
if (String.fromCharCode(event.keyCode) === "A" && event.ctrlKey) {
alert("ctrl+a了,你想干什么?");
}
});
});