Home >Web Front-end >JS Tutorial >js filter special character input suitable for input, paste, drag and drop situations_javascript skills

js filter special character input suitable for input, paste, drag and drop situations_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:54:421198browse
Copy code The code is as follows:

function TextValidate(type) {
var code;
var character;
var Lang = document.getElementById('Lang').value;
var err_msg = "";
if (Lang != "Eng") {
err_msg = "Folder The name cannot contain one of the following characters: n \ / : * ? " < > | & , ";
}
else {
err_msg = "A Folder Name cannot contain any of the following characters: n \ / : * ? " < > | & ,";
}

if (type == "input") {
code = window.event.keyCode;
}
else if (type == "paste") {
code = window.clipboardData.getData('Text');

}
else if (type == "Drop" ) {
code = window.event.dataTransfer.getData('Text');

}
else {
code = arguments.callee.caller.arguments[0].which;
}
var character = String.fromCharCode(code);
var txt = new RegExp("[\*,\&,\\,\/,\?,\|,\:,\ <,\>,"]");
if (type == "input") {
if (txt.test(character)) {
alert(err_msg);
if (document.all) {
window.event.returnValue = false;
}
else {
arguments.callee.caller.arguments[0].preventDefault();
}
}
}
if (type == "paste" || type == "Drop") {
if (txt.test(code)) {
alert(err_msg);
window.event.returnValue = false;
}
}
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn