JS 鼠标键盘 点击事件
Posted MoMo1002
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 鼠标键盘 点击事件相关的知识,希望对你有一定的参考价值。
//鼠标点击事件
$(function () {
document.onmousedown = function (event) {
//清空数据
second = 0;
}
});
//键盘的keydown事件
$(function () {
document.onkeydown = function (event) {
var e = event || window.event || arguments.callee.caller.arguments[0];
//清空数据
second = 0;
}
});
以上是关于JS 鼠标键盘 点击事件的主要内容,如果未能解决你的问题,请参考以下文章