form表单提交 5
点击提交后,随即在原页面出现一个提交成功的小按钮,点击那小按钮后又返回到填写表单页面..请高手指点..谢谢...
点击提交后,随即在原页面出现一个提交成功的小按钮,点击那小按钮后又返回到填写表单页面.. 请高手指点 .. 谢谢
展开
2个回答
展开全部
form提交到一个页面,程序处理结束后返回到form页面就可以了。
比如:
form页面form.html:
<form action="result.php" method="post">
<input type="text" name="name" value="test" />
<input type="submit" value="submit" name="submit" />
</form>
程序页面result.php:
<?php
if($_POST['submit']){
echo '<script type="text/javascript">alert("提交成功!");history.back();</script>';
}
?>
ps:<? ?>里面写html代码,楼上写的真是误导人。
比如:
form页面form.html:
<form action="result.php" method="post">
<input type="text" name="name" value="test" />
<input type="submit" value="submit" name="submit" />
</form>
程序页面result.php:
<?php
if($_POST['submit']){
echo '<script type="text/javascript">alert("提交成功!");history.back();</script>';
}
?>
ps:<? ?>里面写html代码,楼上写的真是误导人。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询