Posted in Javascript onMarch 23, 2012
下面是Js片段在IE9,Firebox 10.0.2 中测试过 :
$(document).keydown(function (e) { var doPrevent; if (e.keyCode == 8) { var d = e.srcElement || e.target; if (d.tagName.toUpperCase() == 'INPUT' || d.tagName.toUpperCase() == 'TEXTAREA') { doPrevent = d.readOnly || d.disabled; } else doPrevent = true; } else doPrevent = false; if (doPrevent) e.preventDefault(); });
关于如何确定Backspace键的代码可以通过这里.
希望对您Web开发有帮助。
JQuery防止退格键网页后退的实现代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@