码迷,mamicode.com
首页 > 其他好文 > 详细

输入文本框或多行文本框不可编辑的情况下,如何防止退格键返回

时间:2014-12-16 11:13:50      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   io   color   os   sp   on   

bubuko.com,布布扣
//防止退格键返回
    $("#txtMsg").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();
    });
View Code

 

输入文本框或多行文本框不可编辑的情况下,如何防止退格键返回

标签:style   blog   http   ar   io   color   os   sp   on   

原文地址:http://www.cnblogs.com/gldblogs/p/4166433.html

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