码迷,mamicode.com
首页 > Web开发 > 详细

js 禁止后退键

时间:2016-03-23 17:19:00      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:

function doKey(e) {

    var ev = e || window.event; //获取event对象  
    var obj = ev.target || ev.srcElement; //获取事件源  
    var t = obj.type || obj.getAttribute(‘type‘); //获取事件源类型  
    var readonly = $(obj).attr("readonly");
    try {
        if (readonly === "readonly") {
            return false;
        }
    } catch (e) {
    }
  
    if (ev.keyCode == 8 && t != "password" && t != "text" && t != "textarea") {
        return false;
    }
}
//禁止后退键 作用于Firefox、Opera  
document.onkeypress = doKey;
//禁止后退键  作用于IE、Chrome  
document.onkeydown = doKey;
document.onkeypress = doKey;

  

js 禁止后退键

标签:

原文地址:http://www.cnblogs.com/kexb/p/5311741.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!