zoukankan      html  css  js  c++  java
  • 禁止所有文本框输入特殊字符

     1 function getValue(o) {
     2     if (o.tagName != '') {
     3         tagname = o.tagName;
     4     }
     5     if ($(o).attr('id')) {
     6         attrid = $(o).attr('id');
     7     }
     8     if ($(o).val()) {
     9         tagvalue = $(o).val();
    10     }
    11 }
    12 var tagname = '';
    13 var attrid = '';
    14 var tagvalue = '';
    15 document.oninput = function (e) {
    16     var o = e.srcElement || e.target;
    17     getValue(o);
    18     if (tagname != '' && (tagname == 'INPUT' || tagname == 'TEXTAREA')) {
    19         if (tagvalue != '' && !/^[^;'&"<>]*$/.test(tagvalue)) {
    20             var str = tagvalue.replace(/;/gm, '').replace(/\/gm, '').replace(/&/gm, '').replace(/"/gm, '').replace(/</gm, '').replace(/>/gm, '');
    21             $(o).val(str);//把过滤特殊字符后的内容赋值给文本框
    22             tagvalue = '';//当输入第一个字符为特殊字符,回退键删除后会有缓存
    23             return false;
    24         }
    25         return true;
    26     }
    27 };
    28 document.onkeydown = function (e) {
    29     var o = e.srcElement || e.target;
    30     getValue(o);
    31     //console.log(e.keyCode);
    32     if (tagname != '' && (tagname == 'INPUT' || tagname == 'TEXTAREA')) {
    33         if (e.keyCode == 222 || e.keyCode == 220 || (e.keyCode == 220 && e.shiftKey)) {
    34             return false
    35         }
    36     }
    37     return true;
    38 };
  • 相关阅读:
    软件构架 课堂练习一
    《软件构架实践》阅读笔记06
    《软件构架实践》阅读笔记05
    《软件构架实践》阅读笔记04
    接口如何实现多态
    c++虚函数的作用是什么?
    java中修饰符作用范围
    Servlet生命周期
    ERP理解
    内部类和匿名内部类
  • 原文地址:https://www.cnblogs.com/guzhanyu/p/7472751.html
Copyright © 2011-2022 走看看