window.event只能在IE下运行,不能在firefox下运行,这是因为firefox的event只能在事件发生的现场使用. 在firefox里直接调用event对象会报undefined.兼容解决方式: <input type="text" onkeydown="keyup_submit(event);"> <script> function keyup_submit(e){ var evt = window.event || e
有时候,操作按钮需要回车键 直接上代码: //回车事件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