设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 47|回复: 1
打印 上一主题 下一主题

判断联系人必须为汉字,且为4-6个汉字,怎么改?

[复制链接]
跳转到指定楼层
1#
发表于 2010-1-17 08:13:26 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
<script language = "JavaScript">
<!--
function check()
{
if (document.input.name.value == "")
{
alert("请填写联系人!");
document.input.name.focus();
return (false);
}
var filter=/^\s*[.A-Za-z0-9_-]{4,15}\s*$/;
if (!filter.test(document.input.name.value))
{
alert("用户名填写不正确,请重新填写!可使用的字符为(A-Z a-z 0-9 _ - .)长度不小于4个字符,不超过15个字符,注意不要使用空格。");
document.input.name.focus();
document.input.name.select();
return (false);
}
if (document.input.tel.value == "")
{
alert("请输入电话号码!");
document.input.tel.focus();
document.input.tel.select();
return (false);
}
if (document.input.dizhi.value == "")
{
alert("请输入联系地址!");
document.input.dizhi.focus();
document.input.dizhi.select();
return (false);
}
if (input.email.value !== "")
{
var checkOK2 = input.email.value;
var checkStr2 = "@.";
var allValid2 = true;
var decPoints2 = 0;
var allNum2 = "";
for (i = 0; i < checkStr2.length; i++)
{
ch2 = checkStr2.charAt(i);
for (j = 0; j < checkOK2.length; j++)
if (ch2 == checkOK2.charAt(j))
break;
if (j == checkOK2.length)
{
allValid2 = false;
break;
}
if (ch2 != ".")
allNum2 += ch2;
}
if (!allValid2)
{
alert("您的信箱地址中缺少有效字符!");
input.email.focus();
return (false);
}
}
if (document.input.w_title.value == "")
{
alert("请填写问题标题");
document.input.w_title.focus();
return (false);
}
if (document.input.desc.value.length>655360)
{
alert("文章内容太长,超出了ACCESS数据库的限制(640K)!建议将文章分成几部分录入。");
document.input.desc.focus();
document.input.desc.select();
return false;
}
document.input.submit()
}
//-->
</script>
您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-20 04:53 , Processed in 0.066363 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表