php页面跳转问题,纠结了好久了呢,求救~~
这个是我的message_post.html代码,为什么提交时没有输入但没有警告呢,求解啊<html><body><formaction="updata.php"meth...
这个是我的message_post.html代码,为什么提交时没有输入但没有警告呢,求解啊
<html>
<body>
<form action="updata.php" method="post" name="name1" onsubmit="return Check()">
<table cellspacing=0 bordercolordark=#FFFFFF width="60%" bordercolorlight=#000000 border=1 align="center" cellpadding="2">
<tr bgcolor="#6b8ba8" style="color:FFFFFF">
<td width="100%" align="center" valign="bottom" height="19" colspan="2">访问者留言</td>
</tr>
<tr>
<td width="30%" align="center" height="30">留言人:</td>
<td width="70%" height="30"><input type="text" name="user" size="20" maxlength="21"></td>
</tr>
<tr>
<td height="80" align="center" width="30%" >留言内容:
</td>
<td height="80" width="70%">
<textarea name="post_contents" rows="10" cols="50"></textarea>
</td>
</tr>
<tr>
<td height="25" colspan="2" align="center">
<input type="reset" value="重置留言">
<input type="submit" value="提交留言">
</tr>
<table/>
</form>
<script language="javascript">
function Check()// 验证表单数据有效性的函数
{
if (document.name1.user.value=="")
{
window.alert('请输入用户名!');
return false;
}
if (document.name1.post_contents.value=="")
{
alert('请输入内容!');
return false;
}
}
</script>
</body>
</html>
》》》》》》》》》》》》》》》》》》》》
update.php的代码是这样的
<?
$name=$_POST['user'];
$content=$_POST['post_contents'];
$conn=mysql_connect("localhost", "root", "");
mysql_query("set names GB2312");
mysql_select_db("student");
$exec="insert into contents (name,content) values ('".$_POST['user']."','".$_POST['post_contents']."')";
$result=mysql_query($exec);
if( $result>0)
echo "添加留言成功,谢谢你的留言!" ;
else
echo "添加留言失败";
echo "<p><a href=index.php ><center>返回主页面</center></a>";
mysql_close();
?>
<html><head><meta http-equiv='Refresh' content='3; URL=index.php'></head>
<body><p>谢谢您对本站的支持,三秒后将自动返回……</p></body></html> 展开
<html>
<body>
<form action="updata.php" method="post" name="name1" onsubmit="return Check()">
<table cellspacing=0 bordercolordark=#FFFFFF width="60%" bordercolorlight=#000000 border=1 align="center" cellpadding="2">
<tr bgcolor="#6b8ba8" style="color:FFFFFF">
<td width="100%" align="center" valign="bottom" height="19" colspan="2">访问者留言</td>
</tr>
<tr>
<td width="30%" align="center" height="30">留言人:</td>
<td width="70%" height="30"><input type="text" name="user" size="20" maxlength="21"></td>
</tr>
<tr>
<td height="80" align="center" width="30%" >留言内容:
</td>
<td height="80" width="70%">
<textarea name="post_contents" rows="10" cols="50"></textarea>
</td>
</tr>
<tr>
<td height="25" colspan="2" align="center">
<input type="reset" value="重置留言">
<input type="submit" value="提交留言">
</tr>
<table/>
</form>
<script language="javascript">
function Check()// 验证表单数据有效性的函数
{
if (document.name1.user.value=="")
{
window.alert('请输入用户名!');
return false;
}
if (document.name1.post_contents.value=="")
{
alert('请输入内容!');
return false;
}
}
</script>
</body>
</html>
》》》》》》》》》》》》》》》》》》》》
update.php的代码是这样的
<?
$name=$_POST['user'];
$content=$_POST['post_contents'];
$conn=mysql_connect("localhost", "root", "");
mysql_query("set names GB2312");
mysql_select_db("student");
$exec="insert into contents (name,content) values ('".$_POST['user']."','".$_POST['post_contents']."')";
$result=mysql_query($exec);
if( $result>0)
echo "添加留言成功,谢谢你的留言!" ;
else
echo "添加留言失败";
echo "<p><a href=index.php ><center>返回主页面</center></a>";
mysql_close();
?>
<html><head><meta http-equiv='Refresh' content='3; URL=index.php'></head>
<body><p>谢谢您对本站的支持,三秒后将自动返回……</p></body></html> 展开
3个回答
展开全部
在两个input中各加一个id属性,名称和name一样,然后用下面这段把你的JS换掉就行了
<script>
function Dd(i) {return document.getElementById(i);}
function check() {
if(Dd('user').value == '') {
alert('请输入用户名!');
Dd('code').focus();
return false;
}
if(Dd('post_contents').value == '') {
alert('请输入内容!');
Dd('num').focus();
return false;
}
}
</script>
<script>
function Dd(i) {return document.getElementById(i);}
function check() {
if(Dd('user').value == '') {
alert('请输入用户名!');
Dd('code').focus();
return false;
}
if(Dd('post_contents').value == '') {
alert('请输入内容!');
Dd('num').focus();
return false;
}
}
</script>
更多追问追答
追问
为什么还是不行啊,无语了.....
追答
这里添加id了吗?
留言人:
留言内容:
添加了的话,点击提交直接跳转了还是没动?火狐firebug会用吗?
展开全部
试下这个:
<script language="javascript">
function Check()// 验证表单数据有效性的函数
{
if (document.name1.user.value=="")
{
window.alert('请输入用户名!');
return (false);
}
if (document.name1.post_contents.value=="")
{
alert('请输入内容!');
return (false);
}
return true;
}
</script>
<script language="javascript">
function Check()// 验证表单数据有效性的函数
{
if (document.name1.user.value=="")
{
window.alert('请输入用户名!');
return (false);
}
if (document.name1.post_contents.value=="")
{
alert('请输入内容!');
return (false);
}
return true;
}
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
是数据插不进去还是 html页面的 javascript 不起做用 意思没看明白
追问
是javascript 不起做用
追答
不知道你用的什么浏览器 我在chrome 下 有alert的提示
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询