//留言提交:gadd.asp使用JS判断输入的内容!
function yesorno()
{
if (confirm("乐乐提示:\n\n★请确认您填写的信息正确!是请```确定```提交!否请```取消```返回修改!"))
return true;
else
return false;
}
//这里开始判断
function gadd()
{
if (document.form.g_title.value=="")
{
alert ("乐乐提示:\n\n★留言标题不能为空!");
document.form.g_title.focus();
return false;
}
var regqq=/^\d{5,9}$/;
if (document.form.g_qq.value!="")
if(!regqq.test(document.form.g_qq.value))
{
alert("乐乐提示:\n\n★请输入你正确的QQ号");
document.form.g_qq.focus();
document.form.g_qq.select();
return false;
}
if (document.form.g_content.value=="")
{
alert ("乐乐提示:\n\n★留言内容不能为空!");
document.form.g_content.focus();
return false;
}
return yesorno();
}
这是JS,呵呵
----------------------------------------
<!-- 这里是发表留言内容的表格开始-->
<form id="form" name="form" method="post" action="gadd_save.asp" style="margin:0">
<table width="747" height="208" border="0" cellspacing="1" cellpadding="2" bgcolor="#95D8FF" style="margin-bottom:5px;">
<tr bgcolor="#FFFFFF" align="left">
<td height="24" colspan="2" background="blog_file/images/t_bg.jpg"><img src="blog_file/images/dian.gif" width="17" height="18" /><font color=#003399 class="log"><b>在线发表留言</b></font></td>
</tr>
<tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#DDF3FF';" onmouseout="this.bgColor='#FFFFFF';">
<td width="137" height="25">留言标题:</td>
<td width="599" align="left">
<label>
<input name="g_title" type="text" id="g_title" />
</label>
*请填写留言的标题!</td>
</tr>
<tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#DDF3FF';" onmouseout="this.bgColor='#FFFFFF';">
<td height="25">网名/姓名:</td>
<td align="left"><input name="g_user" type="text" id="g_user" maxlength="5" />
请留下你的名字!以便乐乐更好的帮助或感谢你!</td>
</tr>
<tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#DDF3FF';" onmouseout="this.bgColor='#FFFFFF';">
<td height="25">腾讯QQ:</td>
<td align="left"><input name="g_qq" type="text" id="g_qq" maxlength="9" />
请留下你的QQ号码!</td>
</tr>
<tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#DDF3FF';" onmouseout="this.bgColor='#FFFFFF';">
<td height="25">电子邮件:</td>
<td align="left"><input name="g_mail" type="text" id="g_mail" />
请留下你的电子邮箱地址!</td>
</tr>
<tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#DDF3FF';" onmouseout="this.bgColor='#FFFFFF';" align="left">
<td height="25">个人网站/博客:</td>
<td align="left"><input name="g_www" type="text" id="g_www" value="http://" />
请留言你的个人网站或博客地址!</td>
</tr>
<tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#DDF3FF';" onmouseout="this.bgColor='#FFFFFF';">
<td height="25">留言内容:</td>
<td align="left"><textarea name="g_content" cols="50" rows="12" id="g_content"></textarea>
</td>
</tr>
<tr bgcolor="#FFFFFF" onmouseover="this.bgColor='#DDF3FF';" onmouseout="this.bgColor='#FFFFFF';">
<td height="25" colspan="2"><label>
<input type="submit" name="Submit" value="发表留言" style="height:30pt;width:350pt;" onclick="javascript:return gadd();" />
</label></td>
</tr>
</table>
</form>
<!-- 这里是发表留言内容的表格结束-->
谢谢版主帮忙看下!