您现在的位置是:网站首页> 编程资料编程资料
删除特殊字符和限定用户输入长度的示例代码_实用技巧_
2023-05-24
360人已围观
简介 删除特殊字符和限定用户输入长度的示例代码_实用技巧_
复制代码 代码如下:
/检查非法字符并检验字符长度
function checkSpeChar(obj, byteLength, title) {
var value = document.getElementById(obj).value;
value = value.replace(/(^\s*)/g, "").replace(/(\s*$)/g, "");
var ret = (/[-|;|,|\/|\(|\)|\[|\]|\}|\{|%|@|\*|!|\']/.test(value));
var arr = ["@", "#", "$", "%", "^", "&", "*", "<", ">", "/", "\\", "\'", "'", ".", ":", "?", "[", "]", ";", "-", "、", "(", ")", "_", "\"", "~", "insert", "delete", "update", "select"];
value = value.toLowerCase();
for (var i = 0; i < arr.length; i++) {
if (value.indexOf(arr[i].toLowerCase()) >= 0) {
ret = true;
}
}
if (ret == true) {
top.LSAlert("内容中含非法字符,请重新输入!");
document.getElementById(obj).value = '';
return;
}
limitLength(value, byteLength, title, obj);
}
//验证输入字符长度
function limitLength(value, byteLength, title, attribute) {
value = value.replace(/\r/g, " ").replace(/\n/g, " "); //回车换行分别替换两个空格
var newvalue = value.replace(/[^\x00-\xff]/g, "***");
var length = newvalue.length;
//当填写的字节数小于设置的字节数
if (length * 1 <= byteLength * 1) {
return;
}
var limitDate = newvalue.substr(0, byteLength);
var count = 0;
var limitvalue = "";
for (var i = 0; i < limitDate.length; i++) {
var flat = limitDate.substr(i, 1);
if (flat == "*") {
count++;
}
}
var size = 0;
var istar = newvalue.substr(byteLength * 1 - 1, 1); //校验点是否为“×”
//if 基点是×;
if (count % 3 == 0) {
size = count / 3 + (byteLength * 1 - count);
limitvalue = value.substr(0, size);
}
else if (count % 3 == 1) {
size = (count - 1) / 3 + (byteLength * 1 - count);
limitvalue = value.substr(0, size);
}
else if (count % 3 == 2) {
size = (count - 2) / 3 + (byteLength * 1 - count);
limitvalue = value.substr(0, size);
}
//top.LSAlert(title + "最大输入" + byteLength + "个字节!");
document.getElementById(attribute).value = limitvalue;
return;
}
相关内容
- 数据绑定之DataFormatString使用介绍_实用技巧_
- TreeView无刷新获取text及value实现代码_实用技巧_
- silverlight用webclient大文件上传的实例代码_实用技巧_
- Queryable.Union 方法实现json格式的字符串合并的具体实例_实用技巧_
- Json返回时间的格式中出现乱码问题的两种解决方案_实用技巧_
- .NET 单点登录解决方案_实用技巧_
- Asp.net 自带报表的使用详解_实用技巧_
- ASP.NET服务器端控件RadioButtonList,DropDownList,CheckBoxList的取值、赋值用法_实用技巧_
- ASP.NET中使用Ajax的方法_实用技巧_
- 三种方法让Response.Redirect在新窗口打开_实用技巧_
