亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

JQuery防止退格鍵網(wǎng)頁后退的實(shí)現(xiàn)代碼

 更新時(shí)間:2012年03月23日 22:51:29   作者:  
有時(shí)我們需要防止退格鍵的網(wǎng)頁后退,一般情況下最好不要這么用,因?yàn)閷?duì)UX體驗(yàn)不好
下面是Js片段在IE9,F(xiàn)irebox 10.0.2 中測(cè)試過 :
復(fù)制代碼 代碼如下:

$(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();
});

關(guān)于如何確定Backspace鍵的代碼可以通過這里
 希望對(duì)您Web開發(fā)有幫助。

相關(guān)文章

最新評(píng)論