js判断⽂本框不能输⼊特殊符号(代码可直接⽤)js判断⽂本框不能输⼊特殊符号
在⽂本框的keypress事件调⽤下⾯函数。
如 <input disabled="disabled" type="text" id='userNameToEdit' onkeypress="TextValidate()" />
如果在⽂本框中按下特殊字符键,则显⽰警告信息,并且屏蔽输⼊。
function TextValidate()
{
js argumentsvar code;
var character;
var err_msg = "Text can not contain SPACES or any of these special characters other than underscore (_) and hyphen (-).";
if (document.all) //判断是否是IE浏览器
{
code = window.event.keyCode;
}
else
{
code = arguments.callee.caller.arguments[0].which;
}
var character = String.fromCharCode(code);
var txt=new RegExp("[ ,\\`,\\~,\\!,\\@,\#,\\$,\\%,\\^,\\+,\\*,\\&,\\\\,\\/,\\?,\\|,\\:,\\.,\\<,\\>,\\{,\\},\\(,\\),\\',\\;,\\=,\"]");
//特殊字符正则表达式
if (st(character))
{
alert("User Name can not contain SPACES or any of these special characters:\n , ` ~ ! @ # $ % ^ + & * \\ / ? | : . < > {} () [] \" "); if (document.all)
{
urnValue = false;
}
else
{
arguments.callee.caller.arguments[0].preventDefault();
}
}
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论