有时候,操作按钮需要回车键
直接上代码:
//回车事件
document.onkeydown = function (e) {
var ev = document.all ? window.event : e;
if (ev.keyCode == 13) {
if ($("input[type='button']").val() == "修改") {
oper('upda');
}
if ($("input[type='button']").val() == "新增") {
oper('add');
}
}
}