禁止所有文本框輸入特殊字符
阿新 • • 發佈:2017-09-04
pla span amp 字符 key 會有 turn att !=
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 };
禁止所有文本框輸入特殊字符